How can we Dynamically delete the html table rows using javascript.
We have a check box on each row. While clicking the remove button with the check box selected the row would be deleted. Such as
document.getElementById(j).innerHTML = ”;
How can we Dynamically delete the html table rows using javascript. We have a
Share
Removing an element is best done with DOM node functions like
removeChild, rather thaninnerHTML-hacking. eg.: