Appendix D (^) ❘ 517
resize()
resize([data, ]function)
Triggers the resize event of each selected element.
Attaches a function to the resize event of each selected
element. Optionally, custom data can be passed if the
data argument is specifi ed, which is available in turn as
event.data.
scroll()
scroll([data, ]function)
Triggers the scroll event of each selected element.
Attaches a function to the scroll event of each selected
element. Optionally, custom data can be passed if the
data argument is specifi ed, which is available in turn as
event.data.
select()
select([data, ]function)
Triggers the select event of each selected element.
Attaches a function to the select event of each selected
element. Optionally, custom data can be passed if the
data argument is specifi ed, which is available in turn as
event.data.
submit()
submit([data, ]function)
Triggers the submit event of each selected element.
Attaches a function to the submit event of each selected
element. Optionally, custom data can be passed if the
data argument is specifi ed, which is available in turn as
event.data.
unload()
unload([data, ]function)
Triggers the unload event of each selected element.
Attaches a function to the unload event of each selected
element. Optionally, custom data can be passed if the
data argument is specifi ed, which is available in turn as
event.data.
EVENT OBJECT
The following table documents event methods and properties supported both by jQuery’s
event object provided to jQuery events and by regular JavaScript events without jQuery. You can
access the regular JavaScript event object from any jQuery event object by using the
event.originalEvent object. If you fi nd a method or property listed below missing from the
jQuery event object, it is likely to be found within the event.originalEvent object.
METHOD/PROPERTY DESCRIPTION
event.altKey
boolean
Indicates whether the Option key (Mac) or Alt key
(Windows) is being pressed.
event.bubbles
boolean
Indicates whether the event bubbles up through the DOM.
continues
http://www.it-ebooks.info
elliott
(Elliott)
#1