Event functions bind a function to an event for all matching
elements.
| Event function |
Binds the function to |
| (document).ready(function) |
The ready event of a document
(when an HTML document is ready to use) |
| (selector).blur(function) |
The blur event of matching elements |
| (selector).change(function) |
The change event of matching elements |
| (selector).click(function) |
The click event of matching elements |
| (selector).dblclick(function) |
The double click event of matching elements |
| (selector).error(function) |
The error event of matching elements |
| (selector).focus(function) |
The focus event of matching elements |
| (selector).keydown(function) |
The key down event of matching elements |
| (selector).keypress(function) |
The key press event of matching elements |
| (selector).keyup(function) |
The key up event of matching elements |
| (selector).load(function) |
The load event of matching elements |
| (selector).mousedown(function) |
The mouse down event of matching elements |
| (selector).mouseenter(function) |
The mouse enter event of matching elements |
| (selector).mouseleave(function) |
The mouse leave event of matching elements |
| (selector).mousemove(function) |
The mouse move event of matching elements |
| (selector).mouseout(function) |
The mouse out event of matching elements |
| (selector).mouseover(function) |
The mouse over event of matching elements |
| (selector).mouseup(function) |
The mouse up event of matching elements |
| (selector).resize(function) |
The resize event of matching elements |
| (selector).scroll(function) |
The scroll event of matching elements |
| (selector).select(function) |
The select event of matching elements |
| (selector).submit(function) |
The submit event of matching elements |
| (selector).unload(function) |
The unload event of matching elements |
| (selector).wrap(content) |
Wrap selected elements within a content |
| (selector).wrapAll(content) |
Wrap selected elements into one content |
| (selector).wrap(element) |
Wrap selected elements inside a new DOM element |
| (selector).wrapAll(element) |
Wrap selected elements into one new DOM element |
| (selector).wrapinner(content) |
Wrap selected inner child contents within a content |
| (selector).wrapinner(element) |
Wrap selected inner child contents within a DOM element |