.data()

Store arbitrary data associated with the matched elements.

.data()

Returns value at named data store for the first element in the jQuery collection, as set by data(name, value).

.dblclick()

Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.

.deferred.always()

Add handlers to be called when the Deferred object is either resolved or rejected.

.deferred.done()

Add handlers to be called when the Deferred object is resolved.

.deferred.fail()

Add handlers to be called when the Deferred object is rejected.

.deferred.isRejected()

Determine whether a Deferred object has been rejected.

.deferred.isResolved()

Determine whether a Deferred object has been resolved.

.deferred.notify()

Call the progressCallbacks on a Deferred object with the given args.

.deferred.notifyWith()

Call the progressCallbacks on a Deferred object with the given context and args.

.deferred.pipe()

Utility method to filter and/or chain Deferreds.

.deferred.progress()

Add handlers to be called when the Deferred object generates progress notifications.

.deferred.promise()

Return a Deferred's Promise object.

.deferred.reject()

Reject a Deferred object and call any failCallbacks with the given args.

.deferred.rejectWith()

Reject a Deferred object and call any failCallbacks with the given context and args.

.deferred.resolve()

Resolve a Deferred object and call any doneCallbacks with the given args.

.deferred.resolveWith()

Resolve a Deferred object and call any doneCallbacks with the given context and args.

.deferred.state()

Determine the current state of a Deferred object.

.deferred.then()

Add handlers to be called when the Deferred object is resolved or rejected.

.delay()

Set a timer to delay execution of subsequent items in the queue.

.delegate()

Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.

.dequeue()

Execute the next function on the queue for the matched elements.

.descendant()

Selects all elements that are descendants of a given ancestor.

.detach()

Remove the set of matched elements from the DOM.

.die()

Remove all event handlers previously attached using .live() from the elements.

.die()

Remove an event handler previously attached using .live() from the elements.

.disabled()

Selects all elements that are disabled.