Thursday, July 1, 2010

How to focus first Textbox on a page using JQuery ?

Jquery really make life more easy.If I want to make first textbox focus in the form, I just need to add few lines of jquery code as below.



<head runat="server">

<title>Untitled Page</title>

<script src="../js/jquery-1.3.2.min.js" type="text/javascript"></script>

<script type="text/javascript">

 $(function() {

 //Focus the second text box.

 $("form :input[type='text']:first").focus();

});

</script>

</head>

No comments:

Post a Comment