I have an HTML element with a large collection of unordered lists contained within it. I need to clone this element to place elsewhere on the page with different styles adde
$("#MainConfig") .clone(false) .find("ul,li") .removeAttr("id") .appendTo($("#smallConfig"));
Try that on for size. :)
[Edit] Fixed for redsquare's comment.