I’m traversing through the tables using $("table").each(function()
How do I skip the tables that have a css class “NotThisClass“
$("table").each(function(){
if( $(this:not('.NotThisClass')))
{
// Do Stuff
}
}
Isn’t working, nor is this,
if( $(this).not('.NotThisClass'))
What is the correct syntax?
1 Answer