In IE, I can go like:
var x = document.getElementById(\"header\"); alert(x.all[0].tagName);
If I try that in Firefox, I get the error \"al
all would be the name of an array. It is not a native javascript keyword.
all
You may want to look at childNodes instead.