tags:

views:

54

answers:

2

Hello

I have a login-page and would like the "Username" textbox focus when page loads.

How is that done best using MVC? Some script or jquery or something?

/M

+4  A: 
<body onload="document.getElementById('myTextBox').focus();">

or in jquery

$(function() { $('#myTextbox').focus(); });
Yuriy Faktorovich
A: 

via Jquery

$(function() {
  $("#Username").focus();
});
RandomNoob