I have a variable i lifted the contents of, from a div on the page, like so:
var originContents = $('#origin .teleportMe').html();
there is a set of span tags, with class="insertionPoint" on the page, i would like to remove and replace with the contents of the origin div.
i would prefer to do this with jquery but not essential.
replace this with the contents of: originContents
<span class="insertionPoint">insert</span>
Oh and hide the original after complete.