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
2010-06-07 05:07:44