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
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
<body onload="document.getElementById('myTextBox').focus();">
or in jquery
$(function() { $('#myTextbox').focus(); });