seems thats it is
+4
A:
Short Answer, Yes.
There are subtle nuances and implementation differences. What are the issues you are running into?
Quintin Robinson
2009-10-16 19:29:08
+1
A:
Yes, especially in IE8 running in Standards Mode.
e.g.
//in IE6, 7, and IE8 quirks and IE8 compatibility mode, this will return
//the first element with either a 'name' or 'id' attribute value of "description"
//(CasE iNsenSiTIVE)
//in IE8 standards mode, it will return the first element with the
//EXACT id attribute value of "description"
var desc = document.getElementById('description');
plus dozens of changes with .setAttribute() and .getAttribute()
scunliffe
2009-10-16 19:46:49
why IE8 standart is so important
Gintaras Vaitkus
2009-10-27 19:23:10
@unknown (google) - was that a question? or a statement? If a question I'd be happy to list all the IE8 standards mode differences.
scunliffe
2009-10-28 13:17:24