.not and .filter functions are the same
Hello,
I think the .not function should be modified to return those elements
that are NOT meeting the specified expression, because now it returns
those that meet the expression, but the filter function does the same
thing.
I think we have more like a logical error here. If i write $
('p').not('.red') then I expect it to return those elements that are
not .red
But If I write $('p').filter('.red') then I expect it to remove those
elements that are .red
Currently the 2 functions does the same thing.