I'm trying to replace a single element with three other elements, using jQuery's replaceWith, but it doesn't seem to be working.
HTML:
<span>first</span>
<span>second</span>
<span>third</span>
JS:
var spans = $("span");
spans.eq(1).replaceWith("<span></span><span></span><span></span>");
This should if I'm write, result in:
<span>first</span>
<span></span><span></span><span></span>
<span>third</span>
But nothing changes...any thoughts?
EDIT: This was meant as an example, I didn't take into account a difference between actual dom and generated dom (is there a difference? It appears so...)
var spans = $("<span>first</span><span>second</span><span>third</span>");
spans.eq(1).replaceWith($("<span></span><span></span><span></span>"));
So there's a more accurate portrayal of my code.
Edit. Check http://jsfiddle.net/z9VDw/3/ . Seems you have to append disconnected DOM nodes before doing such manipulation.