Side navigation
#168 closed bug (fixed)
Opened September 01, 2006 07:30PM UTC
Closed September 16, 2006 04:26PM UTC
Last modified June 21, 2007 03:01AM UTC
sibling() returns siblings and the subject
Reported by: | jon@jonwiley.com | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.0 |
Component: | core | Version: | 1.0 |
Keywords: | DOM sibling siblings | Cc: | |
Blocked by: | Blocking: |
Description
$('span#callMe').siblings();
HTML:
<div><span id="callMe">Text 1</span><span>Text 2</span></div>
Returns:
[<span id="callMe">,<span>]
Should only return [<span>]
Added a test for this to SVN, the problem still exists. FF fails on 2 of 3 tests, IE fails completly.