Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to focus the first input element that is not type=hidden. I've got this far but it will still attempt to focus hidden elements.

$('#content input:first').focus();
share|improve this question

3 Answers

up vote 7 down vote accepted

Use the :visible selector:

$('#content input:visible:first').focus();

:visible docs:

Description: Selects all elements that are visible. Elements can be considered hidden for several reasons:

  • They have a CSS display value of none.
  • They are form elements with type="hidden".
  • Their width and height are explicitly set to 0.
  • An ancestor element is hidden, so the element is not shown on the page.

If it's too much for you, use Attribute Not Equal Selector:

$('#content input[type!="hidden"]:first').focus();

Attribute Not Equal Selector docs:

Description: Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.

share|improve this answer
Nice, didn't even know there was a :visible. Thanks, works like a charm! – Jeffrey Mar 14 '12 at 9:39
$('#content input:first').not(":hidden").focus();
share|improve this answer
1  
I find this better: $('#content input[type!="hidden"]:first').focus(); – gdoron Mar 14 '12 at 9:41

You will need to select the element filtering with its attribute and appearing first.

$("#content input[type!='hidden']:first").focus();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.