I want to create some nodes and insert them into my page just doing a
is enough? or should I also use
as well as checks any further DOM commands like
?
Code:
if (document.getElementById)
Code:
if (!document.appendChild || !document.createTextNode) return;
Code:
document.getElementById("banner_rotator_content").childNodes[0].nodeValue
Comment