How to Set focus on First textbox of page using jQuery
In any webpage where there are lots of input controls and you want the foucs on the first text box when the page is loaded. It is a piece of cake with jQuery. See below code. $(document).ready(function() { $('input:text:first').focus(); }); See live Demo and Code. But there could be one problem with this approach, if […]