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?