Reputation: 35709
after page load, the first selectbox will be auto-focus. how to use jquery to unfocus the selectbox after page finished loading
Upvotes: 0
Views: 320
Reputation: 816790
Have you tried .blur()
? E.g.
$(function() {
$('select:eq(0)').blur();
});
Upvotes: 1