How to append the cloned drop-down in specific Th
Dear All,
I am able to cloned the drop-down and append to html table .But I required to append the cloned control in specific
Th by such as like tq:Eq(3) and set the value to it
Can any one please help me by reviewing my
fiddle. Because I had written the below code ,But find no luck
- function submitvallues(button) {
- debugger;
- var row = $(button).closest('tr');
- var td = row.find("td:eq(5)");
- var select = $("#cars").clone();
- select.attr("id","hello");
- select.val("Audi");
- td.html(select);
- }
Srk