0% found this document useful (0 votes)
30 views

.Add .Addback .Addclass .After .Ajaxcomplete .Ajaxerror .Ajaxsend .Ajaxstart .Ajaxstop .Ajaxsuccess

The document describes various jQuery methods for manipulating DOM elements and handling events. It includes methods for adding elements or content, inserting elements, getting and setting attributes, attaching event handlers, and more. Many methods have to do with AJAX requests and events. The document appears to be detailing the various selectors and traversal methods available in jQuery.

Uploaded by

anand
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

.Add .Addback .Addclass .After .Ajaxcomplete .Ajaxerror .Ajaxsend .Ajaxstart .Ajaxstop .Ajaxsuccess

The document describes various jQuery methods for manipulating DOM elements and handling events. It includes methods for adding elements or content, inserting elements, getting and setting attributes, attaching event handlers, and more. Many methods have to do with AJAX requests and events. The document appears to be detailing the various selectors and traversal methods available in jQuery.

Uploaded by

anand
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

.

add()
Create a new jQuery object with elements added to the set of matched elements.
Traversing > Miscellaneous Traversing

.addBack()
Add the previous set of elements on the stack to the current set, optionally filtered by a selector.
Attributes | Manipulation > Class Attribute | CSS

.addClass()
Adds the specified class(es) to each element in the set of matched elements.
Manipulation > DOM Insertion, Outside

.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
Ajax > Global Ajax Event Handlers

.ajaxComplete()
Register a handler to be called when Ajax requests complete. This is an AjaxEvent.
Ajax > Global Ajax Event Handlers

.ajaxError()
Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.
Ajax > Global Ajax Event Handlers

.ajaxSend()
Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.
Ajax > Global Ajax Event Handlers

.ajaxStart()
Register a handler to be called when the first Ajax request begins. This is an Ajax Event.
Ajax > Global Ajax Event Handlers

.ajaxStop()
Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.
Ajax > Global Ajax Event Handlers

.ajaxSuccess()
Attach a function to be executed whenever an Ajax request completes successfully. This is an
Ajax Event.
Selectors > Basic

All Selector (*)


Selects all elements.
Deprecated > Deprecated 1.8 | Traversing > Miscellaneous Traversing

.andSelf()
Add the previous set of elements on the stack to the current set.
Effects > Custom

.animate()
Perform a custom animation of a set of CSS properties.
Selectors > Basic Filter | Selectors > jQuery Extensions

:animated Selector
Select all elements that are in the progress of an animation at the time the selector is run.
Manipulation > DOM Insertion, Inside

.append()
Insert content, specified by the parameter, to the end of each element in the set of matched
elements.
Manipulation > DOM Insertion, Inside

.appendTo()
Insert every element in the set of matched elements to the end of the target.
Attributes | Manipulation > General Attributes

.attr()
Get the value of an attribute for the first element in the set of matched elements or set one or
more attributes for every matched element.
Selectors > Attribute

Attribute Contains Prefix Selector [name|=value]


Selects elements that have the specified attribute with a value either equal to a given string or
starting with that string followed by a hyphen (-).
Selectors > Attribute

Attribute Contains Selector [name*=value]


Selects elements that have the specified attribute with a value containing a given substring.
Selectors > Attribute

Attribute Contains Word Selector [name~=value]


Selects elements that have the specified attribute with a value containing a given word, delimited
by spaces.
Selectors > Attribute

Attribute Ends With Selector [name$=value]


Selects elements that have the specified attribute with a value ending exactly with a given string.
The comparison is case sensitive.
Selectors > Attribute

Attribute Equals Selector [name=value]


Selects elements that have the specified attribute with a value exactly equal to a certain value.
Selectors > Attribute | Selectors > jQuery Extensions

Attribute Not Equal Selector [name!=value]


Select elements that either dont have the specified attribute, or do have the specified attribute
but not with a certain value.
Selectors > Attribute

Attribute Starts With Selector [name^=value]


Selects elements that have the specified attribute with a value beginning exactly with a given
string.
Manipulation > DOM Insertion, Outside

.before()
Insert content, specified by the parameter, before each element in the set of matched elements.
Events > Event Handler Attachment

.bind()
Attach a handler to an event for the elements.

You might also like