Whats wrong with this CSS selector i'm using in jQuery? Trying to select all tr's within a table of ID "itable" without a class of "mod" where its possible for multiple classes to be on each tr.
if($('#itable tr:not[class~=mod]').length == 0){
//something
}