Reputation: 165
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 child elements each time. as the table can have lots of children it will be to difficult to do this manually. I need a way to change the id's of all child(all descendants) elements. I will always just add the counter to the id. (I know children will access only the immediate children but I just wanted to try if that works). If you guys know how this can be done in either jQuery or Javascript, please let me know.
<table id="table">
<tr id = "tr" >
<td id="td">
<span id="span" value="hiii">hi</span>
</td>
</tr>
</table>
<button>Clone</button>
<script>
$("button").click(function () {
var table = $("#table").clone(true,true)
table.attr( 'id', function() { return this.id +"1"; })
alert($("#table1").children())
$("#table1").find(*).attr('id', function() { return this.id +"1"; })
table.appendTo("#table")
alert(document.getElementById("tr1"))
alert(document.getElementById("span1").value)
});
</script>
Upvotes: 9
Views: 12589
Reputation: 305
you can do
$Element.children().each(function () {
this.id = new_id;
});
Upvotes: 0
Reputation: 707218
If elem
is the parent of your cloned structure and cntr
is the counter you said you were maintaining, you can fix all ids in that cloned structure like this:
function fixIds(elem, cntr) {
$(elem).find("[id]").add(elem).each(function() {
this.id = this.id + cntr;
})
}
If the ids might already have a cloned number at the end and you want to replace that number, you can do so like this:
function fixIds(elem, cntr) {
$(elem).find("[id]").add(elem).each(function() {
this.id = this.id.replace(/\d+$/, "") + cntr;
})
}
So, based on the code you've now added to your question, you could do this:
<script>
var cloneCntr = 1;
$("button").click(function () {
var table = $("#table").clone(true,true)
fixIds(table, cloneCntr);
table.insertAfter("#table")
cloneCntr++;
});
</script>
Working example: http://jsfiddle.net/jfriend00/wFu9K/
Note: I also changed the DOM insertion code to insertAfter()
, because you can't append one table to another the way you were doing (a table would either go after the existing table or inside a cell in the previous table).
If you are just trying to add a row, then you need to clone the row, not the whole table.
You could add a cloned row to the existing table with this code:
function fixIds(elem, cntr) {
$(elem).find("[id]").add(elem).each(function() {
this.id = this.id.replace(/\d+$/, "") + cntr;
})
}
var cloneCntr = 1;
$("button").click(function () {
var row = $("#table tr").first().clone(true,true);
fixIds(row, cloneCntr++);
row.appendTo("#table")
});
Upvotes: 11
Reputation: 78630
$("#table1").find(*)
should be
table.find("*")
$("#table1")
will not return anything on that line of code as you have not yet added the table to the DOM. And *
is a selector which should be a string.
Upvotes: 0