To focus on a login input box with id 'login' on page startup : focus « jQuery « JavaScript DHTML






To focus on a login input box with id 'login' on page startup

  


$(document).ready(function(){
  $("#login").focus();
});

   
    
  








Related examples in the same category

1.Set focus to text box
2.Fire focus event
3.Set focus form field
4.Trigger focus event
5.Trigger an event on a field