I was wondering if binding a single change() event on form fields is enough to correctly perform a action when the value of the field changes.
Or should I bind all possible events? like this:
$(this).bind('change keyup focus click keydown', function(){
// ...
}).change();
Also, does binding multiple events affect performance?
focusorclickare not raised when the value changes in a text field and if you click on a text field, it does not change the value.