I want to do something like this:
var html = $("#media").html();
$("#multimedia-content").append(html);
$("#multimedia-content").filter("*").removeAttr("id");
The 3th line fails, I want to remove all id's from this part of html but I don't know how to do the selection.
Thanks!
Personally, i would try this:
$('#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
If you'd like #media to lose its ID as well, remove the .find()
and .end()
lines, otherwise un-comment them.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With