From f7efcc858dec55fa3b9babb94ebc73b0888e6d51 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 31 Aug 2006 03:59:51 +0000 Subject: [PATCH] Fixed issue with .children(). --- src/jquery/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 115ee7f2..0a21af77 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: {