How Many Types Of Event Call In Jquery?
Answers (1)
Add AnswerThis section will teach you about the many types of jQuery events.
jQuery Event Methods:
The jQuery library has methods for dealing with DOM events. The majority of jQuery methods correspond to DOM events.
All jQuery methods and DOM events are included in the table below.
Category | jQuery Method | DOM Event |
---|---|---|
Form events | blur | onblur |
change | onchange | |
focus | onfocus | |
focusin | onfocusin | |
select | onselect | |
submit | onsubmit | |
Keyboard events | keydown | onkeydown |
keypress | onkeypress | |
keyup | onkeyup | |
focusout | ||
Mouse events | click | onclick |
dblclick | ondblclick | |
focusout | ||
hover | ||
mousedown | onmousedown | |
mouseenter | onmouseenter | |
mouseleave | onmouseleave | |
mousemove | onmousemove | |
mouseout | onmouseout | |
mouseover | onmouseover | |
mouseup | onmouseup | |
Toggle | ||
Browser events | Error | onerror() |
Resize | onresize | |
Scroll | onscroll | |
Document loading | Load | onload |
Ready | ||
Unload | onunload |