Clone a div and change the ID's of it and all it's children to be unique
$("#current_users").clone(false).find("*[id]").andSelf().each(function() { $(this).attr("id", $(this).attr("id") + "_cloned"); });
And watch your events if there are any attached. You'll have to fix them up if they rely on ids.