The world of DHTML is a chaotic one right now. Netscape Navigator 4.x and Internet Explorer 4.x have sufficiently different implementations of the Document Object Model (DOM) that cross-browser DHTML development is a real challenge.
A major benefit of DHTML is the ability to wall off an area on the page and treat it as an object, with its own properties and positioning. In Navigator this area is called a You can then use the myBrowser and docObj variables throughout the program to write the correct term for each browser. You still have to make sure your DIVs and layers have compatible behaviors, but that’s a different story. Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience. if (document.all) { myBrowser = "IE"; docObj = document.all;} else if (document.layers) { myBrowser = "NN"; docObj = document.layers;}























