hello frndz..
i have a function in javascript to add new cell in a table...!! tht work perfectly but now i want to create a span tag within cell tag..!!
var cellLeft = row.insertCell(3);
chbk1.id = 'change'+iteration;
var chbk = document.createElement('input');
chbk.type = 'button';
chbk.name = 'button';
chbk.value = 'Add Items';
this will create a new cell in last row... i want to create a span tag also.. within new cell..!!
it will look like this
<td><span id='hi'>Hello</span></td>
any help will appriciated..!! :D