Opened 12 years ago
Closed 12 years ago
#7549 closed bug (invalid)
jQuery can not insert a stack of elements with after, insertAfter, before and insertBefore
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.5 |
Component: | unfiled | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When trying to insert a stack of jQuery elements before or after another element it will fail. This did work in version 1.4.2
I created 2 examples for this
http://jsbin.com/enoni4/1 <-- latest version http://jsbin.com/enoni4/2 <-- 1.4.2 version
Note: See
TracTickets for help on using
tickets.
There is no signature of
jQuery( ... )
which accepts an array of jQuery objects as you do in your test case. Maybe you meant to use thejQuery( elementArray )
signature which accepts an array of DOM elements (jQuery() docs). If this worked in 1.4.2 it was a bug that got fixed.See this test case for the correct usage