aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-08-31 03:59:51 +0000
committerJohn Resig <jeresig@gmail.com>2006-08-31 03:59:51 +0000
commitf7efcc858dec55fa3b9babb94ebc73b0888e6d51 (patch)
tree5c581b444882e946a43464ea0c4b81d30870c756
parentc0e4280282d03a449caaf87d5a6bfe151a874796 (diff)
downloadjquery-f7efcc858dec55fa3b9babb94ebc73b0888e6d51.tar.gz
jquery-f7efcc858dec55fa3b9babb94ebc73b0888e6d51.zip
Fixed issue with .children().
-rw-r--r--src/jquery/jquery.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 115ee7f2d..0a21af773 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -2383,7 +2383,7 @@ jQuery.macros = {
* @param String expr An expression to filter the child Elements with
* @cat DOM/Traversing
*/
- children: "a.childNodes"
+ children: "jQuery.sibling(a.firstChild)"
},
each: {