DOM Manipulation
|
These methods manipulate DOM elements in some manner e.g. changing attribute, style attribute, adding and removing elements etc.
|
after(),
append(),
attr(),
before(),
more..
|
Traversing
|
These methods help in navigating from DOM element to another element in a parent child hierarchy e.g. finding ancestors, descendants or sibling element of a specified element.
|
children(),
closest(),
each(),
first(),
next(),
filter(),
parent(),
siblings(),
more..
|
CSS
|
These methods get and set css related properties of elements.
|
addClass(),
css(),
hasClass(),
removeClass(),
toggleClass()
more..
|
Attributes
|
These methods get and set DOM attributes of elements. |
attr(),
html(),
removeAttr(),
prop(),
val(),
more..
|
Events
|
These methods are used to handle DOM or JavaScript events.
|
bind(),
blur(),
change(),
click(),
dblclick(),
focus(),
keyup(),
keydown(),
more..
|
Effects
|
These methods are used to add animation to elements.
|
animate(),
fadeIn(),
fadeOut(),
hide(),
show(),
stop(),
more..
|
Dimensions
|
These methods are used to get and set the CSS dimensions for the various properties. |
height(),
width(),
innerHeight(),
innerWidth(),
more..
|
Forms
|
These methods and event handlers handle forms and their various elements. |
blur(),
change(),
val(),
submit(),
more..
|
Ajax
|
These methods allow Ajax functionalities with jQuery e.g.
|
get(),
getJson(),
post(),
load(),
more..
|
Core
|
These methods are core methods in jQuery API.
|
jQuery(),
holdReady(),
when(),
more..
|
Data
|
These methods allow us to associate arbitrary data with specific DOM elements. |
data(),
removeData(),
queue(),
dequeue(),
clearQueue(),
more..
|
Miscellaneous
|
These methods are useful in various tasks e.g. traversing elements, converting to array etc.
|
each(),
index(),
get(),
toArray(),
more..
|
Utilities
|
Utility methods are helpful in getting information on various things e.g. browser, function, array, window etc.
|
inArray(),
isArray(),
isFunction(),
isNumeric(),
isWindow(),
isXmlDoc(),
more..
|