Set focus to text box : focus « jQuery « JavaScript DHTML






Set focus to text box

     

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("input").focus();

        });
    </script>
  </head>
  <body>
    <body>
     <p><input type="text" /> <span>focus event fire</span></p>
    </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Fire focus event
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