I\'m having a problem. Basically, when a user clicks an \'Edit\' link on a page, the following Jquery code runs:
$(\"#saveBtn\").click(function () { save
If you used...
$(function(){ function myFunc() { // ... do something ... }; $('#saveBtn').click(myFunc); });
... then it will be easier to unbind later.