views:

29

answers:

1

after page load, the first selectbox will be auto-focus. how to use jquery to unfocus the selectbox after page finished loading

+1  A: 

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

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