Jquery Unbind Event
The jQuery event unbind() method removes event handles from selected elements. This method can remove all or selected event handlers, or stop specified functions from running when the event occurs. Using the unbind method with no arguments, will remove all handlers attached to the element(s). As of jQuery 1.7, the .on() and .off() methods are the preferred methods to attach and remove event handlers on elements. Syntax $(selector).unbind(event,function) Example In the following jQuery example, the unbind() method removes the click event from the element with an id of imgMouse....