JQuery tutorial: event handling |
||||||||||||||
JQueryEvent handlingJQuery enables you to handle events that are placed on the HTML elements. In this example, when a button is clicked the label of the button will change.Example: <html> <head><title>Handling events</title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> var i=0; $(document).ready(function(){ $("button").click(function(){ if(i==0){$("button").text("Thank!");i=1;} else {$("button").text("Click me");i=0;} }); }); </script> </head> <body> <button>Click me</button> </body> </html> Note: We supplied function() as the argument of the click() function to do some things (change text label of the button) when the button is clicked. |
| |||||||||||||
|
||||||||||||||