Fixed .next() and .prev().

This commit is contained in:
John Resig 2007-01-09 15:44:24 +00:00
parent 694becea38
commit 609dec9a78

View file

@ -1818,8 +1818,8 @@ new function() {
jQuery.each({
parent: "a.parentNode",
parents: "jQuery.parents(a)",
next: "jQuery.nth(a,1,'nextSibling')",
prev: "jQuery.nth(a,1,'previousSibling')",
next: "jQuery.nth(a,2,'nextSibling')",
prev: "jQuery.nth(a,2,'previousSibling')",
siblings: "jQuery.sibling(a.parentNode.firstChild,a)",
children: "jQuery.sibling(a.firstChild)"
}, function(i,n){