Fire focus event : focus « jQuery « JavaScript DHTML






Fire focus event

     

<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('color','red');
            });
        });
    </script>
  </head>
  <body>
    <body>
     <p><input type="text" /> <span>focus event fire</span></p>
    </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Set focus to text box
2.Set focus form field
3.Trigger focus event
4.To focus on a login input box with id 'login' on page startup
5.Trigger an event on a field