Posts Tagged visible
Jquery focus on first visual input element
Posted by Erik Bauffman in default on July 23, 2010
I wanted the first visual form element, not having the noFocus class, get the focus when the page loads
$(‘form input:visible:not(.noFocus):first’).focus();
I love jquery!