I'm trying to use replaceWith(...) function with a jQuery Object but it does not work, when i try do it with inserted DOM elements it works, but not in jQuery objects.
I have this:
var obj = $('<div id="obj">Text</div>');
obj.replaceWith('<span>New text</span>');
"obj" is not replaced with the new HTML.
Here is the demo: http://jsfiddle.net/v7EA2/
Maybe i did not understand how replaceWith() function works,
Thanks by your help.
UPDATE
Please look at here: http://jsfiddle.net/v7EA2/6/
You can
replace
it beforeappending
into thedom
by the following code,Theory : First you have to exclude the
div
from the intialJquery object
and then you have toadd
the new set of html into it.DEMO