i'm trying to get a dhtml menu working in Konqueror, but i'm not sure how what its DOM is.
anyone know? i figured it might be like netscape 6's DOM.
Printable View
i'm trying to get a dhtml menu working in Konqueror, but i'm not sure how what its DOM is.
anyone know? i figured it might be like netscape 6's DOM.
try this
use that that will tell you, but whats Konqueror?PHP Code:if (document.all) {alert('ie')}
else if (document.getelementById){alert('ie')}
else if (document.layer) {alert('ns')}
else {alert('unknown')}
Hey guys,
It's been a while since I've looked into the different varient's of Mozilla, but I'm pretty sure that Konquorer is one, just as NS 6/7 is a variant of Mozilla. They all use the same DOM structure (I think), and for the most part, that means they follow W3C DOM.
aDog :cool: