A
Axel Dahmen
Guest
I've created a JavaScript checking for browser properties on load.
From David Flanagan's book "JavaScript: The Definitive Guide", 5th edition,
published by O'Reilly, page 276, I learned that IE6+ may be recognized from
an expression like the following:
if (document.documentElement && document.documentElement.clientWidth) {...}
But this expression sometimes yields false!
I don't know yet what exactly causes the "false" condition, but it always
happens when I start-up my machine and double-click a
From David Flanagan's book "JavaScript: The Definitive Guide", 5th edition,
published by O'Reilly, page 276, I learned that IE6+ may be recognized from
an expression like the following:
if (document.documentElement && document.documentElement.clientWidth) {...}
But this expression sometimes yields false!
I don't know yet what exactly causes the "false" condition, but it always
happens when I start-up my machine and double-click a