I want to prevent multiple submit if someone click on one of the submit buttons multiple times.
How can unbind or undelgate in this case th
unbind
undelgate
$(document).ready(function(){ $('div.ajax form').submit(function(){ $(this).do_some_stuff(); return false; }); });