jQuery Events
home
Run
screen_rotation
fullscreen
cloud_download
navigate_before
<!DOCTYPE html> <html> <head> <title>tr odd Selects all odd rows of table - jQuery Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("#demo").blur(function(){ $(this).css("background","yellow"); alert("Blur event occurred!"); }); }); </script> </head> <body> <br><br> <input type="text" id="demo"> </body> </html>
<!DOCTYPE html> <html> <head> <title>tr odd Selects all odd rows of table - jQuery Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("#demo").blur(function(){ $(this).css("background","yellow"); alert("Blur event occurred!"); }); }); </script> </head> <body> <br><br> <input type="text" id="demo"> </body> </html>
Copyrights@tutorialsplane.com