how to change id of table cell using javascript
- by Muhammad Akhtar
I have tried this, but not working.
tbl1.rows[0].cells[0].id ='myId';
and this is also not working
tbl1.rows[0].cells[0].setAttribute("id","newid");
how can I do this?
Thanks