.clone()
Create a deep copy of the set of matched elements.
All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the Extending Ajax documentation.
Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the Deferred Object documentation.
Create a deep copy of the set of matched elements.
Add handlers to be called when the Deferred object is resolved.
Add handlers to be called when the Deferred object is rejected.
Determine whether a Deferred object has been rejected.
Determine whether a Deferred object has been resolved.
Return a Deferred’s Promise object.
Reject a Deferred object and call any failCallbacks with the given args.
Reject a Deferred object and call any failCallbacks with the given context and args.
Resolve a Deferred object and call any doneCallbacks with the given args.
Resolve a Deferred object and call any doneCallbacks with the given context and args.
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
Perform an asynchronous HTTP (Ajax) request.
Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().
Creates an object that handles the actual transmission of Ajax data.
A constructor function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.
Load data from the server using a HTTP GET request.
Load JSON-encoded data from the server using a GET HTTP request.
Load a JavaScript file from the server using a GET HTTP request, then execute it.
Determine whether an element has any jQuery data associated with it.
Parses a string into an XML document.
Load data from the server using a HTTP POST request.
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.