Objects JQ Home << Objects
Click a jQuery 3.5 API Objects Method signature or property in the table below to see in-depth information on it.
Alphabetically | Description |
---|---|
Callbacks ObjectTop | |
The jQuery.Callbacks() method has one signature: | |
jQuery.Callbacks | A Callbacks list object constructor for managing callback lists, optionally behavioured using flags. |
The callbacks.add() method has one signature: | |
callbacks.add( callbacks ) | Add callback(s) to a callback list. |
The callbacks.disable() method has one signature: | |
callbacks.disable() | Disable a callback list. |
The callbacks.empty() method has one signature: | |
callbacks.empty() | Empty a callback list. |
The callbacks.fire() method has one signature: | |
callbacks.fire( arguments ) | Invoke the callback list with the specified arguments. |
The callbacks.fired() method has one signature: | |
callbacks.fired() | Determine whether the callback list has already been invoked. |
The callbacks.fireWith() method has one signature: | |
callbacks. | Invoke the callback list with specified context and arguments. |
The callbacks.has() method has one signature: | |
callbacks.has( callback ) | Determine whether the callback list contains the specified callback. |
The callbacks.lock() method has one signature: | |
callbacks.lock() | Lock a callback list. |
The callbacks.locked() method has one signature: | |
callbacks. | Determine whether the callback list is in a locked state. |
The callbacks.remove() method has one signature: | |
callbacks.remove( callback ) | Remove callback(s) from a callback list. |
Deferred ObjectTop | |
The jQuery.Deferred() method has one signature: | |
jQuery.Deferred( [initFunction] ) | Deferred object constructor for managing callback queues, optionally passing an inititailizing function. |
The deferred.always() method has one signature: | |
deferred.always( alwaysCallbacks ) | Add handlers to be called when the Deferred object is resolved or rejected . |
The deferred.done() method has one signature: | |
deferred.done( doneCallbacks ) | Add handlers to be called when the Deferred object is resolved . |
The deferred.fail() method has one signature: | |
deferred.fail( failCallbacks ) | Add handlers to be called when the Deferred object is rejected . |
deferred. | **REMOVED** Establish if Deferred object has been rejected. |
deferred. | **REMOVED** Establish if Deferred object has been resolved. |
The deferred.notify() method has one signature: | |
deferred.notify( [args] ) | Call any progressCallbacks on Deferred object, optionally passing arguments. |
The deferred.notifyWith() method has one signature: | |
deferred. | Call any progressCallbacks on Deferred object with specified context and arguments. |
deferred.pipe() | **DEPRECATED** Utility method for filtering and/or chaining a Deferred. |
The deferred.progress() method has one signature: | |
deferred. | Add handlers to the Deferred object that are called on progress notification generation. |
The deferred.promise() method has one signature: | |
deferred.promise( [target] ) | Return promise object for a Deferred, optionally passing object to attach promise methods to. |
The deferred.reject() method has one signature: | |
deferred.reject( [args] ) | Reject Deferred object and call any failCallbacks with the specified arguments. |
The deferred.rejectWith() method has one signature: | |
deferred. | Reject Deferred object and call any failCallbacks with specified context and arguments. |
The deferred.resolve() method has one signature: | |
deferred.resolve( [args] ) | Resolve Deferred object and call any doneCallbacks with the specified arguments. |
The deferred.resolveWith() method has one signature: | |
deferred. | Resolve Deferred object and call any doneCallbacks with specified context and arguments. |
The deferred.state() method has one signature: | |
deferred.state() | Determine the current state of Deferred object. |
The deferred.then() method has one signature: | |
deferred.then( | Add handlers to the Deferred object that are called on resolution, rejection or progression. |
The .promise() method has one signature: | |
.promise( [type] [, target] ) | Return a dynamically generated Promise that is resolved once all collection bound actions of a certain type have ended, optionally passing a queue type and/or a target object. |
Event ObjectTop | |
Methods | |
The event.isDefaultPrevented() method has one signature: | |
event.isDefault | Return a boolean dependant upon event.preventDefault() ever being called on this event object. |
The event.isImmediatePropagationStopped() method has one signature: | |
event.isImmediate | Return a boolean dependant upon event.stopImmediatePropagation() ever being called on this event object. |
The event.isPropagationStopped() method has one signature: | |
event.is | Return a boolean dependant upon event.stopPropagation() ever being called on this event object. |
The event.preventDefault() method has one signature: | |
event.prevent | Prevents an event's default action from triggering. |
The event.stopImmediatePropagation() method has one signature: | |
event.stop | Stop other event handlers from being called. |
The event.stopPropagation() method has one signature: | |
event.stop | Stop current event bubbling up DOM tree, preventing parent handler notification of event. |
Properties | |
event.clientX | Contains value of the mouse position, relative to left edge of the viewable window (X-axis). |
event.clientY | Contains value of the mouse position relative to top edge of the viewable window (Y-axis). |
event. | Contains the value of the DOM element in progress within the event bubbling phase. |
event.data | An optional data map passed to event method when currently executing handler is attached. |
event. | Contains the value of the element that the in progress jQuery event handler was attached to. |
event.namespace | Contains the value of the namespace specified on event triggering. |
event.pageX | Contains the value of the mouse position relative to the left edge of the document (X-axis). |
event.pageY | Contains the value of the mouse position relative to the top edge of the document (Y-axis). |
event. | Contains the value of the other DOM element, if it exists, involved in mouseout and mouseover events. |
event.result | Contains the value of the last value returned by an event handler triggered by this event, unless the value was undefined . |
event.target | Contains the value of the DOM element, or descendant thereof, that initiated the event. |
event.timeStamp | Contains the value of the difference in milliseconds between the creation of this event by the browser and UTC (January 1, 1970). |
event.type | Contains the value of the description of the event. |
event.which | Contains a value indicating key or button that was pressed for keyboard and mouse events. |