up vote 0 down vote favorite
share [g+] share [fb]

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);
link|improve this question
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 '09 at 19:30
sorry, I think I got it. Code above works fine. – Robert Oct 15 '09 at 19:32
Good stuff. I'd delete the question then :) – annakata Oct 15 '09 at 19:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.