I have a function that can add row in a table...
Can anyone here help me to figure out how to delete a row?
my coding is like this:
function addTableRow(tableName)
{
totalTableRow = totalTableRow + 1
var newRow;
var newCell;
var currentRow;
currentRow = totalTableRow
// ADD A ROW
newRow = tableName.insertRow();
// Add A Cell
newCell = newRow.insertCell();
}
thanks for your kindness...
Can anyone here help me to figure out how to delete a row?
my coding is like this:
function addTableRow(tableName)
{
totalTableRow = totalTableRow + 1
var newRow;
var newCell;
var currentRow;
currentRow = totalTableRow
// ADD A ROW
newRow = tableName.insertRow();
// Add A Cell
newCell = newRow.insertCell();
}
thanks for your kindness...