16 Feb jQuery Events Insight and Methods
Events are the users’ actions, a web page can respond to, such as page load, mouse click, keystroke, click on submit button, etc. In this lesson, we will learn how to work with jQuery events and methods.
On triggering the events, you can play with them, using a function, which is what we call jQuery Event handlers.
jQuery Event Methods
The event methods in jQuery initiate an action for the elements and the method also allow you to manipulate events.
Let’s see the event methods in jQuery,
- jQuery bind() method
- jQuery blur() method
- jQuery change() method
- jQuery click() method
- jQuery dblclick() method
- jQuery focus() method
- jQuery focusin() method
- jQuery focusout() method
- jQuery hover() method
- jQuery keydown() method
- jQuery keypress() method
- jQuery keyup() method
- jQuery mousedown() method
- jQuery mouseup() method
- jQuery mouseenter() method
- jQuery mouseleave() method
- jQuery mousemove() method
- jQuery mouseout() method
- jQuery mouseover() method
- jQuery off() method
- jQuery on() method
- jQuery one() method
- jQuery $.proxy() method
- jQuery ready() method
- jQuery resize() method
- jQuery scroll() method
- jQuery select() method
- jQuery submit() method
- jQuery toggle() method
- jQuery trigger() method
- jQuery triggerHandle() method
- jQuery unbind() method
- jQuery undelegate() method
- jQuery unload() method
No Comments