cometta
cometta

Reputation: 35709

unfocus selectbox

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

Answers (1)

Felix Kling
Felix Kling

Reputation: 816790

Have you tried .blur() ? E.g.

$(function() {
    $('select:eq(0)').blur();
});

Upvotes: 1

Related Questions