This works in Mozilla/Firebird but not IE 6... I suspect the problem is with appendChild.
Any idea how to get it working in IE 6?
Code:
var tbody = document.getElementById('sometable');
var tRows = tbody.rows;
var newRow = tRows[0].cloneNode(true);
tbody.appendChild(newRow);