aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-08-26 22:39:14 +0000
committerJohn Resig <jeresig@gmail.com>2006-08-26 22:39:14 +0000
commit0382a490f5e5ee781098981db050a23d4f2e5a36 (patch)
tree7dccd989d6d2d86cdbc3e0de234a935489f54653 /src
parent0f458cf806ed4013dc2ef289c990f3818df0fd25 (diff)
downloadjquery-0382a490f5e5ee781098981db050a23d4f2e5a36.tar.gz
jquery-0382a490f5e5ee781098981db050a23d4f2e5a36.zip
Added .not() test case.
Diffstat (limited to 'src')
-rw-r--r--src/jquery/jquery.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index ef5556742..a204992ad 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -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