Trigger focus event : focus « jQuery « JavaScript DHTML






Trigger focus event

  
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
        
            
            $("#old").click(function(){
              $("input").trigger("focus");
            });
            $("#new").click(function(){
              $("input").triggerHandler("focus");
            });
            $("input").focus(function(){
              $("<span>Focused!</span>").appendTo("body");
            });
               


        });
    </script>

  </head>
  <body>
    <body>
          <button id="old">.trigger("focus")</button>
          <button id="new">.triggerHandler("focus")</button><br/><br/>
        
          <input type="text" value="To Be Focused"/>
                         
    </body>
</html>

   
    
  








Related examples in the same category

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