.add()
Add elements to the set of matched elements.
.addClass()
Adds the specified class(es) to each of the set of matched elements.
.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
.ajaxComplete()
Register a handler to be called when Ajax requests complete. This is an Ajax Event.
.ajaxError()
Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.
.ajaxSend()
Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.
.ajaxStart()
Register a handler to be called when the first Ajax request begins. This is an Ajax Event.
.ajaxStop()
Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.
.ajaxSuccess()
Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.
.all()
Selects all elements.
.andSelf()
Add the previous set of elements on the stack to the current set.
.animate()
Perform a custom animation of a set of CSS properties.
.animated()
Select all elements that are in the progress of an animation at the time the selector is run.
.append()
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
.appendTo()
Insert every element in the set of matched elements to the end of the target.
.attr()
Get the value of an attribute for the first element in the set of matched elements.
.attr()
Set one or more attributes for the set of matched elements.
.attributeContains()
Selects elements that have the specified attribute with a value containing the a given substring.
.attributeContainsPrefix()
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 (-).
.attributeContainsWord()
Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.
.attributeEndsWith()
Selects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive.
.attributeEquals()
Selects elements that have the specified attribute with a value exactly equal to a certain value.
.attributeHas()
Selects elements that have the specified attribute, with any value.
.attributeMultiple()
Matches elements that match all of the specified attribute filters.
.attributeNotEqual()
Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.
.attributeStartsWith()
Selects elements that have the specified attribute with a value beginning exactly with a given string.