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
There are two ways of doing this as pointed out by cHao.
$('form button').prop('disabled', true);
or
$('form button').attr('disabled', 'disabled');