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
Is there a way to remove all previous click events that have been assigned to a button?
$('#saveBtn').unbind('click').click(function(){saveQuestion(id)});