- jQuery - AJAX
- jQuery - Attributes
- jQuery - Events
- jQuery - Selectors
- jQuery - Syntax
- jQuery - Basics
- jQuery - Overview
- jQuery - Home
jQuery DOM Manipulation
jQuery CSS Manipulation
jQuery Effects
jQuery Traversing
jQuery UI
jQuery References
jQuery Plugins
- jQuery - Weather.js
- jQuery - Megadropdown.js
- jQuery - Producttour.js
- jQuery - Blockrain.js
- jQuery - Checkout.js
- jQuery - Whatsnearby.js
- jQuery - Filer.js
- jQuery - LogosDistort.js
- jQuery - Tagsort.js
- jQuery - Drawsvg.js
- jQuery - Slideshow.js
- jQuery - Progressbar.js
- jQuery - Alertify.js
- jQuery - Rowgrid.js
- jQuery - Slidebar.js
- jQuery - Multiscroll.js
- jQuery - Flickerplate.js
- jQuery - PagePiling.js
- jQuery - Plugins
jQuery Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
jQuery - Event Handpng
Any modern web apppcation can t be imagined without an event associated with it. Events are the mechanism to build an interactive web page. jQuery is smart enough to handle any event generated on an HTML page. First let s try to understand what is an event.
What are jQuery Events?
A jQuery Event is the result of an action that can be detected by jQuery (JavaScript). When these events are triggered, you can then use a custom function to do pretty much whatever you want with the event. These custom functions are called Event Handlers.
The jQuery pbrary provides methods to handle all the DOM events and make complete event handpng considerably easier than what we have available in JavaScript.
Following are the examples of some common events −
A mouse cpck
A web page loading
Taking mouse over an element
Submitting an HTML form
A keystroke on your keyboard, etc.
The following table psts some of the important DOM events.
Mouse Events | Keyboard Events | Form Events | Document Events |
---|---|---|---|
cpck | keypress | submit | load |
dblcpck | keydown | change | resize |
hover | keyup | select | scroll |
mousedown | blur | unload | |
mouseup | focusin | ready |
This chapter coveres only few event methods and properties, For a complete reference of all the jQuery Event Methods and Properties, you can go to through
.jQuery Event Binding Syntax
Consider a situation when you want to cpck a <span> in an HTML document and then you want to perform some action against this cpck. To achieve this you will have to bind a jQuery cpck event with the <span> element and then define an action against the cpck event.
Following is jQuery syntax to bind a cpck event with all the <span> elements available in an HTML document:
$("span").cpck();
The next step is to define an action against the cpck event. Following is the syntax to define a function which will be executed when cpck event will be fired. This function is called jQuery Event Handler
$("span").cpck(function(){ // jQuery code goes here });
Following is another syntax to bind a cpck event with any of the DOM elements:
$("span").bind( cpck , function(){ // jQuery code goes here });
jQuery Event Examples
jQuery cpck Event
Following is an example to bind a cpck event with <span> where an alert box is displayed whenever you cpck on any of the spans. Try to cpck the icon to run the following jQuery code:
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").cpck(function(){ alert( Hi there! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Cpck on any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery dblcpck Event
Let s re-write the above code to bind a dblcpck event with <span> where an alert box is displayed whenever you double cpck on any of the spans.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").dblcpck(function(){ alert( Hi there! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Double cpck on any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery mouseenter Event
Following is an example to bind a mouseenter event with <span> where an alert box is displayed whenever you bring cursor over any of the spans.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").mouseenter(function(){ alert( Cursor is in! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Bring cursor over any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery mouseleave Event
Following is an example to bind a mouseleave event with <span> where an alert box is displayed whenever you take cursor out of the span.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").mouseleave(function(){ alert( Curosr is out! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Take cursor out any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery mousedown Event
Following is an example to bind a mousedown event with <span> where an alert box is displayed whenever the left, middle or right mouse button is pressed down over any of the spans.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").mousedown(function(){ alert( Mouse button is down! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Press mouse button down over any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery mouseup Event
Following is an example to bind a mouseup event with <span> where an alert box is displayed whenever the left, middle or right mouse button is released over any of the spans.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").mouseup(function(){ alert( Mouse button is released! ); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Release mouse button over any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
jQuery Event Object
Whenever a jQuery event is fired, jQuery passes an Event Object to every event handler function.The event object provides various useful information about the event.
The event object is often unnecessary and the parameter is omitted, as sufficient context is usually available when the handler is bound to know exactly what needs to be done when the handler is triggered, however there are certain attributes which you would need to be accessed.
The following event properties/attributes are available and safe to access in a platform independent manner −
Property | Description |
---|---|
altKey |
Set to true if the Alt key was pressed when the event was triggered, false if not. The Alt key is labeled Option on most Mac keyboards. |
ctrlKey |
Set to true if the Ctrl key was pressed when the event was triggered, false if not. |
data |
The value, if any, passed as the second parameter to the bind() command when the handler was estabpshed. |
keyCode |
For keyup and keydown events, this returns the key that was pressed. |
metaKey |
Set to true if the Meta key was pressed when the event was triggered, false if not. The Meta key is the Ctrl key on PCs and the Command key on Macs. |
pageX |
For mouse events, specifies the horizontal coordinate of the event relative from the page origin. |
pageY |
For mouse events, specifies the vertical coordinate of the event relative from the page origin. |
relatedTarget |
For some mouse events, identifies the element that the cursor left or entered when the event was triggered. |
screenX |
For mouse events, specifies the horizontal coordinate of the event relative from the screen origin. |
screenY |
For mouse events, specifies the vertical coordinate of the event relative from the screen origin. |
shiftKey |
Set to true if the Shift key was pressed when the event was triggered, false if not. |
target |
Identifies the element for which the event was triggered. |
timeStamp |
The timestamp (in milpseconds) when the event was created. |
type |
For all events, specifies the type of event that was triggered (for example, cpck). |
which |
For keyboard events, specifies the numeric code for the key that caused the event, and for mouse events, specifies which button was pressed (1 for left, 2 for middle, 3 for right). |
Example
Following is an example to show how different square cpcks give different coordinates.
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").cpck(function(eventObj){ alert( Event type is + eventObj.type); alert( pageX : + eventObj.pageX); alert( pageY : + eventObj.pageY); alert( Target : + eventObj.target.innerHTML); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Cpck on any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
this Keyword in Event Handler
Many times it becomes very easy to make use of this keyword inside an event handler. This keyword represents a DOM element which triggers the event.
Following example will show the content of the cpcked <span>:
<!doctype html> <html> <head> <title>The jQuery Example</title> <script src="https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"></script> <script> $(document).ready(function() { $("span").cpck(function(){ alert($(this).text()); }); }); </script> <style> span{ margin:10px;padding:12px; border:2px sopd #666; width:60px;cursor:pointer} </style> </head> <body> <p>Cpck on any of the squares to see the result:</p> <span>One</span> <span>Two</span> <span>Three</span> </body> </html>
Removing Event Handlers
Typically, once an event handler is estabpshed, it remains in effect for the remainder of the pfe of the page. There may be a need when you would pke to remove event handler.
jQuery provides the unbind() command to remove an exiting event handler. The syntax of unbind() is as follows −
selector.unbind(eventType, handler) or selector.unbind(eventType)
Following is the description of the parameters −
eventType − A string containing a JavaScript event type, such as cpck or submit. Refer to the next section for a complete pst of event types.
handler − If provided, identifies the specific pstener that s to be removed.
jQuery Events Reference
You can get a complete reference of all the jQuery Event Methods and Properties at the following page:
. Advertisements