Wednesday, January 19, 2011

How to set focus on first enabled textbox in ASP.net by JQuery?

    $(document).ready(function () {
        $("input:text:visible:first").focus();
    });

No comments:

Post a Comment