deleting/removing row of a table using javascript

Here is an example to delete row dynamically by their position. 

dynamicTbl =Table Client id



function deleterow() {
var position = dynamicTbl.rows.length - 3;
dynamicTbl.deleteRow(position);
}


Popular Posts