The bind() method attaches one or more event handlers for selected elements, and specifies a function to run when the event occurs.
The bind() method attaches one or more event handlers for selected elements, and specifies a function to run when the event occurs.
Required. Specifies one or more events to attach to the elements. Multiple event values are separated by space. Must be a valid event.
Optional. Specifies additional data to pass along to the function
Required. Specifies the function to run when the event occurs
Specifies an event map ({event:function, event:function, ...}) containing one or more events to attach to the elements, and functions to run when the event occurs
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
An object containing data that will be passed to the event handler.
A function to execute each time the event is triggered.
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
A function to execute each time the event is triggered.
Bind an event handler to the "change" 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.
A function to execute each time the event is triggered.
The click event occurs when an element is clicked.
The click event occurs when an element is clicked. The click() method triggers the click event, or attaches a function to run when a click event occurs.
the callback/handler function
A plain object of one or more event types, such as click or keydown and their corresponding functions that are no longer to be executed.
Remove event handlers previously attached using .live() from the elements.
Remove event handlers previously attached using .live() from the elements.
A string containing a JavaScript event type, such as click or keydown.
The function that is no longer to be executed.
Remove event handlers previously attached using .live() from the elements.
Specify a function to execute when the DOM is fully loaded.
Specify a function to execute when the DOM is fully loaded.
A function to execute after the DOM is ready.
jQuery Events Functions
http://www.w3schools.com/jquery/jquery_ref_events.asp