Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HTML:

<div style="display:block">Text</div>
<div style="display:block">Text</div>
<div style="display:none">Text</div>
<div style="display:none">Text</div>
<div style="display:none">Text</div>

How do I find first invisible block and make it visible?

If there is no invisible block, do nothing.

share|improve this question

3 Answers

up vote 12 down vote accepted
$('div:hidden:first').show();
share|improve this answer
3  
+1 nicely done answer – kjy112 Mar 4 '11 at 16:20
1  
+1. You beat me to it :P – Rocket Hazmat Mar 4 '11 at 16:20

Use this:

$('div:hidden:first').show();
share|improve this answer

jQuery has the :visible and :hidden selectors:

$('#wrapperContainer > div:hidden:first').show();

(Recommend a wrapper container because if you just do 'div:hidden:first' it will get the first hidden div on the page, which probably isn't what you want)

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.