// do something here
});
The table below lists all the methods supported by jQuery:
Formula & Description1 blur ()
Activate the blur event of each matched element
2 blur (fn)
Bind a function to the blur event of each matched element
3 change ()
Enable the change event of each matched element
4 change (fn)
Bind a function to the change event of each matched element
5 clicks ()
Activate the click event of each matched element
6 click (fn)
Bind a function to the click event of each matched element
7 dblclick ()
Enable the dblclick event of each matched element
8 dblclick (fn)
Bind a function to the dblclick event of each matched element
9 error ()
Activate the error event of each matched element
10 error (fn)
Bind a function to the error event of each matched element
11 focus ()
Activate the focus event of each matched element
12 focus (fn)
Bind a function to the focus event of each matched element
13 keydown ()
Enable the keydown event of each matched element
14 keydown (fn)
Bind a function to the keydown event of each matched element
15 keypress ()
Enable the keypress event of each matched element
16 keypress (fn)
Bind a function to the keypress event of each matched element
17 keyup ()
Enable the keyup event of each matched element
18 keyup (fn)
Bind a function to the keyup event of each matched element
20 load (fn)
Bind a function to the load event of each matched element
21 mousedown (fn)
Bind a function to the mousedown event of each matched element
22 mouseenter (fn)
Bind a function to the mouseenter event of each matched element
23 mouseleave (fn)
Bind a function to the mouseleave event of each matched element
24 mousemove (fn)
Bind a function to the mouseover event of each matched element
25 mouseout (fn)
Bind a function to the mouseout event of each matched element
26 mouseover (fn)
Bind a function to the mouseover event of each matched element
27 mouseup (fn)
Bind a function to the mouseup event of each matched element
28 resize (fn)
Bind a function to the resize event of each matched element
29 scroll (fn)
Bind a function to the scroll event of each matched element
30 select ()
Activate the select event of each matched element
31 select (fn)
Bind a function to the select event of each matched element
32 submit ()
Activate the submit event of each matched element
33 submit (fn)
Bind a function to the submit event of each matched element
34 unload (fn)
Bind a function to the unload event of each matched element
Follow tutorialspoint
Last lesson: DOM manipulation in jQuery
Next post: jQuery Ajax