I have a custom jQuery plugin which binds a change event to a form element, in this case some input elements. The change event is used to
change
input
You can bind multiple handlers for the same event. Bind the second change as you normally would:
$("#a").change(function() { alert("1"); }); $("#a").change(function() { alert("2"); }); $("#a").change(); // alerts 1, then 2