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.

I have a bunch of divs that are all hidden like this

<div class="elements">
    <input value="something" type="text" value="" name="name">
    <input value="" type="text" name="phone">

</div>

<div class="elements">
    <input type="text" value="" name="name" class="contact_name">
    <input value="something" type="text" name="phone">

</div>

<div class="elements">
    <input type="text" value="" name="name" class="contact_name">
    <input value="" type="text" name="phone">

</div>

<div class="elements">
    <input value="something_again" type="text" value="" name="name">
    <input value="" type="text" name="phone">
</div>

CSS

.elements{display:none;}

I want to show only the element divs that have an input of that is not an empty string....so in the above example i would show the first, second and fourth divs because at least one input has a value...

$('.elements').find('input').each(function)...

that is what i have so far but not sure how to search if there is at least one input that isn't blank

share|improve this question
1  
Have a look at api.jquery.com/filter – Felix Kling Oct 16 '11 at 15:39
looking at it now...seems to be promising but never used it before – Trace Oct 16 '11 at 15:50
first and second last inputs have two (duplicate) value attributes – Samuel Liew Oct 16 '11 at 15:56

2 Answers

up vote 2 down vote accepted
$('.elements').each(function() {

    var count = $(this).find('input[value!=""]').length;
    count > 0 ? $(this).show() : $(this).hide();

});
share|improve this answer
this seems to show all of them regardless – Trace Oct 16 '11 at 16:10
nevermind..i got it – Trace Oct 16 '11 at 16:12

Try this

$('.elements input:text[value!=""]').parents(".elements").show();
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.