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

I try to get all children, but skip tables:

What I have is:

var allElements = $("body").children();
$.each(allElements, function(i, element)
{
  // Do something
}); // each element

Now I look for either a way, that allElements does not include tables or a function, that returns true, if an element is a table:

if(element.is("table"));

I do not find anything. Does anyone know a solution for this issue?

share|improve this question
what about tbody, tr, td and elements inside those tags? Do you want also exclude them all? – Yuriy Rozhovetskiy Sep 30 '11 at 10:58
@Yuriy Rozhovetskiy If I take children of body, those elements are not in this collection, are they? – Em1 Sep 30 '11 at 11:02
Of course not, this was my mistake – Yuriy Rozhovetskiy Sep 30 '11 at 11:13

4 Answers

up vote 3 down vote accepted

children() accepts a selector, so use the :not one:

$('body').children(':not(table)').each(function () {
    // Whatever
});

For future reference, you were on the right track with is(), but as it returns true if any of the elements in the jQuery object matches the selector, you'd have to use it as follows:

$('body').children().each(function () {
    if (!$(this).is('table')) {
        // It isn't a table, do whatever
    }
});

To keep providing alternatives, you could also use the not() method:

$('body').children().not('table').each(function () {
    // Do whatever
});
share|improve this answer

Use the .not() function like this:

$("body").children().not('table');

Or, if you want to check as part of a larger expression within the each loop, you can use is(), eg.

if (! $(this).is('table')) { ... }
share|improve this answer

Can do it in a single selector:

$('body > :not(table)').each...
share|improve this answer
$('body').children().each(function(){
    if(!$(this).is('table'))
    alert($(this).html())
})

an example here http://jsfiddle.net/S2tUS/

or maybe this

$('body').children(':not(table)').each(function(){
    alert($(this).html())
})

http://jsfiddle.net/S2tUS/2/

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.