Added .not() test case.

This commit is contained in:
John Resig 2006-08-26 22:39:14 +00:00
parent 0f458cf806
commit 0382a490f5

View file

@ -637,6 +637,7 @@ jQuery.fn = jQuery.prototype = {
* @example $("p").not("#selected")
* @before <p>Hello</p><p id="selected">Hello Again</p>
* @result [ <p>Hello</p> ]
* @test cmpOK($("#main > p#ap > a").not("#google").length, "==", 2, ".not")
*
* @name not
* @type jQuery