Indicates whether the META key was pressed when the event fired.
The mouse position relative to the left edge of the document.
The mouse position relative to the top edge of the document.
The difference in milliseconds between the time the browser created the event and January 1, 1970.
Describes the nature of the event.
For key or mouse events, this property indicates the specific key or button that was pressed.
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.
If this method is called, the default action of the event will not be triggered.
Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.
Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
jQuery's event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler (no checks for window.event required). It normalizes the target, relatedTarget, which, metaKey and pageX/Y properties and provides both stopPropagation() and preventDefault() methods.
Those properties are all documented, and accompanied by examples, on the `Event object` page.
The standard events in the Document Object Model are:
blur
,focus
,load
,resize
,scroll
,unload
,beforeunload
,click
,dblclick
,mousedown
,mouseup
,mousemove
,mouseover
,mouseout
,mouseenter
,mouseleave
,change
,select
,submit
,keydown
,keypress
, andkeyup
. Since the DOM event names have predefined meanings for some elements, using them for other purposes is not recommended. jQuery's event model can trigger an event by any name on an element, and it is propagated up the DOM tree to which that element belongs, if any.``
``