[jQuery] opposite of filter()

[jQuery] opposite of filter()


Just a quick one, but I couldn't find documentation on how to do
this.
You can use filter() to include only the elements that match the
specified criteria, but is there a way to exclude all elements that
match the filter criteria? for example:
$('p').filter('.thisClass') would get all the paragraphs that have a
class of thisClass, but how would you go about getting all the
paragraphs that don't have a class of thisClass?