git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9297327
)
Removed docs breaking xml docs
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Tue, 27 Feb 2007 22:13:43 +0000
(22:13 +0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Tue, 27 Feb 2007 22:13:43 +0000
(22:13 +0000)
src/jquery/jquery.js
patch
|
blob
|
history
diff --git
a/src/jquery/jquery.js
b/src/jquery/jquery.js
index
74b912e
..
41b8201
100644
(file)
--- a/
src/jquery/jquery.js
+++ b/
src/jquery/jquery.js
@@
-932,10
+932,6
@@
jQuery.fn = jQuery.prototype = {
* Please note: the expression cannot use a reference to the
* element name. See the two examples below.
*
- * This will not work: $(".res img").not("img[@src$=on]")
- *
- * This will: $(".res img").not("[@src$=on]"); // also could be written $(".res img:not([@src$=on])")
- *
* @example $("p").not( $("div p.selected") )
* @before <div><p>Hello</p><p class="selected">Hello Again</p></div>
* @result [ <p>Hello</p> ]