jQuery: correct syntax for ':not()'
- by user304299
I'm trying to filter a list of elements via ':not()', and jQuery seems to be ignoring my filter.
here is the code:
myElements.filter(':not(.someclass)');
jquery still selects all of myElements...