When passing the contents of a <div> to another <div> with jquery as below, the original is removed.
Is there a way to do this and still retain the original?
Example Here - I want the document to read Item One, Item Two, Item One.
function display() {
$('#display').html($('#ItemOne'));
}
display();