Modify ↓
Ticket #168 (closed bug: fixed)
sibling() returns siblings and the subject
| Reported by: | jon@… | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.0 |
| Component: | core | Version: | 1.0 |
| Keywords: | DOM sibling siblings | Cc: | |
| Blocking: | Blocked by: |
Description
JavaScript: $('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>]
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Added a test for this to SVN, the problem still exists. FF fails on 2 of 3 tests, IE fails completly.