Hello everyone:
How to correct this javascript UNDER Mozilla Firefox?Or is there some fungible ways?I need your help,thx!
=> var divColl = document.all.tags("DIV");
Hello everyone:
How to correct this javascript UNDER Mozilla Firefox?Or is there some fungible ways?I need your help,thx!
=> var divColl = document.all.tags("DIV");
document.all is IE only not W3C standard.
W3C standard is
var divColl = document.getElementsByTagName("DIV");
A great place to make sure you're using W3C standards is:
document.all is IE only not W3C standard.
W3C standard is
var divColl = document.getElementsByTagName("DIV");
A great place to make sure you're using W3C standards is:
Hi hollystyles,thank you for you reply,and it's very helpful!
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.