Set focus form field : focus « jQuery « JavaScript DHTML






Set focus form field

     

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("input").removeAttr("disabled").focus().val("editable now");
        });
    </script>
  </head>
  <body>
    <body>
      <button>Enable</button>
      <input type="text" disabled="disabled" value="data"/>

  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Set focus to text box
2.Fire focus event
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