Лично я бы попробовал это:
$('#media') // grab the media content
.clone() // make a duplicate of it
//.find('*') // find all elements within the clone
.removeAttr('id') // remove their ID attributes
//.end() // end the .find()
.appendTo('#multimedia-content'); // now add it to the media container
Если вы хотите, чтобы #media также потерял свой идентификатор, удалите строки .find()
и .end()
, в противном случаепрокомментируйте их.