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've got this

    if ($("#sidebar .box_cuerpo").height() == "0") {
           //blaaa
    }

But sometimes on other pages inside site there are more than one "#sidebar .box_cuerpo " elements... and also some are not height 0.

is it possible to check on all elements and if almost one is height 0 that statement it's true?

share|improve this question
1  
How do you mean "almost one"? Do you mean if any of the elements have height 0? – Christofer Eliasson Feb 15 '12 at 22:40
Is there more than one #sidebar on a page? – j08691 Feb 15 '12 at 22:41
j08691: No, only one #sidebar Christofer Eliasson: Yes! – Zuker Feb 15 '12 at 22:50

1 Answer

up vote 3 down vote accepted

You can use the .filter method to reduce the collection.
.filter executes the given function for each element in the collection. If the function returns true, the element is kept. Otherwise (false), the element is discarded.

if ($("#sidebar .box_cuerpo").filter(function() {
    return $(this).height() === 0;
}).length) {
    //blaaa
}
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.