How to use unbind and bind event in javascript
How to use unbind and bind event in javascript
1. bind()
$("#BoxId").bind("click", (function () {
$('span').text("Single Clicked");
}));
2. unbind()
Unbind or detached the existing events is quite easy, just need to specified the attached event type.
Detached the “click” and “dblclick” event from elements with an Id of “BoxId”.
$('#BoxId').unbind("click");
$('#BoxId').unbind("dblclick");
bind unbind same time
for form submit
$("#CrudRateTierItem").unbind("submit").bind("submit", function (e) { });
for button cick
$("#CrudRateTierItem").unbind("click").bind("click", function (e) { });
Avantages:
it will disable multiple clicks and multiple form submission
Share This with your friend by choosing any social account