Niceforms and jQuery events
- by Michael Edwards
Our design agency has supplied HTML that uses NiceForms. The problem I am having is that this mucks up jQuery event binding.
I have the following code:
keys = $("#key input");
$(keys).each(function(){
$(this).change(function() {
console.log("hi");
}
}
If I disable NiceForms this code works but with Niceforms enabled it doesn't. How do I get around this problem?