Returns: jQuery .unbind([eventType], [handler(eventObject)]) eventType A string containing a JavaScript event type, such as click or submit. handler(eventObject) The function that is to be no longer executed. .unbind(eventType, false) eventType A string containing a JavaScript event type, such as click or submit. false Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ). .unbind(event) event A JavaScript event object as passed to an event handler. Remove a previously-attached event handler from the elements. Any handler that has been attached with .bind() can be removed with .unbind(). In the simplest case, with no arguments, .unbind() removes all handlers attached to the elements: $('#foo').unbind(); This version removes the handlers regardless of type. To be more precise, we can pass an event type: $('#foo').unbind('click'); By specifying the click event type, only handlers for that event typ...