jQuery Reference Manual - Data
- Previous Page jQuery Traversal
- Next Page jQuery DOM Elements
jQuery Data Manipulation Functions
These methods allow us to associate specified DOM elements with arbitrary data.
Function | Description |
---|---|
.clearQueue() | Delete all unexecuted items from the queue. |
.data() | Store arbitrary data related to the matched elements. |
jQuery.data() | Store arbitrary data related to the specified element. |
.dequeue() | Remove a queue function from the front of the queue and execute it. |
jQuery.dequeue() | Remove a queue function from the front of the queue and execute it. |
jQuery.hasData() | Store arbitrary data related to the matched elements. |
.queue() | Display or operate the queue of functions executed by the matched elements. |
jQuery.queue() | Display or operate the queue of functions executed by the matched elements. |
.removeData() | Remove previously stored data. |
jQuery.removeData() | Remove previously stored data. |
See Also
Reference Manual:jQuery Queue Control
- Previous Page jQuery Traversal
- Next Page jQuery DOM Elements