How to set the focus on the first <select> element of the page using JQuery?
- by user605660
Hi. I would like to set the focus on the first element of the page using JQuery when the page is loaded.
I could successfully set the focus for first element by using
$(":input:visible:first").focus();
or
$(':input:enabled:visible:first').focus();
, according to jquery, set focus on the first enabled input or select or textarea on the page .…