Returns: jQuery .live(eventType, handler) eventType A string containing a JavaScript event type, such as "click" or "keydown." As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names, as well. handler A function to execute at the time the event is triggered. .live(eventType, eventData, handler) eventType A string containing a JavaScript event type, such as "click" or "keydown." As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names, as well. eventData A map of data that will be passed to the event handler. handler A function to execute at the time the event is triggered. .live(events) events A map of one or more JavaScript event types and functions to execute for them. Attach a handler to the event for all elements which match the current selector, now and in the future. This method is a variation on the basic .bind() method for attaching event han...