vote up 0 vote down star

I'm trying to insert a TH as the first column. But so far always put it at the end of all columns. Any help will be appreciate it. Thanks

var someNode  = document.createElement("th");
someNode.innerHTML = "Hello";
var sp = document.getElementById("table").getElementsByTagName("thead")[0].getElementsByTagName("tr")[0];
var ref = document.getElementById("table").getElementsByTagName("thead")[0].getElementsByTagName("tr")[0].getElementsByTagName("th")[0];
sp.insertBefore(someNode,ref);
flag
looks good and WFM I'm afraid - you should try and simplify the page you have, looks like something else is going on – annakata Oct 15 at 19:30
sorry, I think I got it. Code above works fine. – Robert Oct 15 at 19:32
Good stuff. I'd delete the question then :) – annakata Oct 15 at 19:33

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.