Attach a handler to an event for the elements.
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
Bind an event handler to the "change" JavaScript event, or trigger that event on an element.
Bind an event handler to the "click" JavaScript event, or trigger that event on an element.
Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.
Remove an event handler previously attached using .live()
from the elements.
Bind an event handler to the "error" JavaScript event.
The current DOM element within the event bubbling phase.
Contains the optional data passed to jQuery.fn.bind when the current executing handler was bound.
Returns whether event.preventDefault() was ever called on this event object.
Returns whether event.stopImmediatePropagation() was ever called on this event object.
Returns whether event.stopPropagation() was ever called on this event object.
The mouse position relative to the left edge of the document.
The mouse position relative to the top edge of the document.
If this method is called, the default action of the event will not be triggered.
The other DOM element involved in the event, if any.
This attribute contains the last value returned by an event handler that was triggered by this event, unless the value was undefined
.
Prevents other event handlers from being called.
This method prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
The DOM element that initiated the event.
This attribute returns the number of milliseconds since January 1, 1970, when the event is triggered.
Describes the nature of the event.
For key or button events, this attribute indicates the specific button or key that was pressed.
Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.
Bind an event handler to the "focusin" JavaScript event.
Bind an event handler to the "focusin" JavaScript event.
Bind an event handler to the "focusout" JavaScript event.
Bind an event handler to the "focusout" JavaScript event.
Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element.
Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element.
Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element.
Attach a handler to the event for all elements which match the current selector, now or in the future.
Bind an event handler to the "load" JavaScript event.
Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.
Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.
Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.
Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.
Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element.
Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.
Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.
Attach a handler to an event for the elements. The handler is executed at most once.
Takes a function and returns a new one that will always have a particular scope.
Specify a function to execute when the DOM is fully loaded.
Bind an event handler to the "resize" JavaScript event, or trigger that event on an element.
Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element.
Bind an event handler to the "select" JavaScript event, or trigger that event on an element.
Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.
Bind two or more handlers to the matched elements, to be executed on alternate clicks.
Execute all handlers and behaviors attached to the matched elements for the given event type.
Execute all handlers attached to an element for an event.
Remove a previously-attached event handler from the elements.
Bind an event handler to the "unload" JavaScript event.