Forum: JavaScript / DHTML / AJAX Mar 14th, 2008 |
| Replies: 3 Views: 17,750 If you still need it, this will delete all rows from your table, except for your head row.
var table = document.getElementById("tableid");
//or use : var table = document.all.tableid;
for(var i... |