I need some help figuring out how to write some jQuery code.
I need to clone a table dynamically onclick. but then I need to change the ids of the table and its chil
you can do
$Element.children().each(function () { this.id = new_id; });