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
Events stack in jQuery. If you do:
and:
$(":button").click(function() { alert("click"); }).click(function() { alert("click 2"); });
both will fire. So just bind another event to the relevant elements. It won't overwrite the first.