not selector limitations

not selector limitations


I guess this is expected, but I'd like to clarify that not doesn't
work with attribute selectors.
For example
$(".foo:not(.bar)") will return all elements that have class foo but
not class bar.
$(".foo:not(.bar[data-x='y']") will return the same set of elements as
above.
Thanks
Paul