Class jQuery.EventModule: jquery.sap.events


Check the jQuery.Event class documentation available under "http://www.jquery.com"
and "http://api.jquery.com/category/events/event-object/" for details.

Constructor Summary
new jQuery.Event()Constructor for a jQuery.Event object.
Method Summary
getOffsetX()Returns OffsetX of Event.
getOffsetY()Returns OffsetY of Event.
getPseudoTypes()Returns an array of names (as strings) identifying jQuery.sap.PseudoEvents that are fulfilled by this very Event instance.
isPseudoType(sType)Checks whether this instance of jQuery.Event is of the given sType pseudo type.
Constructor Detail
new jQuery.Event()
Constructor for a jQuery.Event object.
See:
"http://www.jquery.com" and "http://api.jquery.com/category/events/event-object/".
Method Detail
getOffsetX(): int
Returns OffsetX of Event. In jQuery there is a bug. In IE the value is in offsetX, in FF in layerX
Returns:
{int} offsetX
getOffsetY(): int
Returns OffsetY of Event. In jQuery there is a bug. in IE the value is in offsetY, in FF in layerY.
Returns:
{int} offsetY
getPseudoTypes(): String[]
Returns an array of names (as strings) identifying jQuery.sap.PseudoEvents that are fulfilled by this very Event instance.
Returns:
{String[]} Array of names identifying jQuery.sap.PseudoEvents that are fulfilled by this very Event instance.
isPseudoType(sType): boolean
Checks whether this instance of jQuery.Event is of the given sType pseudo type.
Parameters:
{string}sType The name of the pseudo type this event should be checked for.
Returns:
{boolean}true if this instance of jQuery.Event is of the given sType, false otherwise.