Search code examples
asp.net-mvc-3razorrazor-2

Autofocus on the textbox in html razor code


I want the cursor to be focused on the textbox when I load the page. I tried by adding autofocus="" but I couldn't find any difference in that.

Any help would be greatly appreciated!

@Html.TextBoxFor(
    m => m.UserName, 
    "@xyz.com", 
    new { @class = "form-control input-lg", @id = "username"})

Solution

  • If you are ok with jquery, you can try using

    <script type="text/javascript">
        $(function () {
            $("#username").focus();
        });
    </script>