Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Focus event fires when an element receives focus either via the pointing device or by tab navigation

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){              $("input").focus(function () {                 $(this).next("span").css('display','inline').fadeOut(1000);              });         });     </script> <style>   div.dbl { background:yellow;color:black; }    </style>   </head>   <body>     <body>          <p><input type="text" /> <span>focus fire</span></p>                  <p><input type="password" /> <span>focus fire</span></p>     </body> </html>