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
when you click the button within the function add the attr(disabled) which will make the button inactive.
$("form Button").attr("disabled","1");
should prevent multiple submissions