Forum: JavaScript / DHTML / AJAX May 22nd, 2008 |
| Replies: 2 Views: 2,324 You can put this inside a script tag in the header.
document.onclick = function() { setupZoom(); }
or put an ID on your body tag and put:
document.getElementById("bodyid").onclick =... |
Forum: JavaScript / DHTML / AJAX Mar 14th, 2008 |
| Replies: 3 Views: 17,180 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... |