devxlogo

Layers or DIVs?

Layers or DIVs?

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 ; in IE it’s a

. In any cross-browser DHTML document, the first thing to determine is whether the client browser is reading layers or DIVs. You can figure that out with JavaScript:

 if (document.all) {	myBrowser = "IE";	docObj = document.all;} else if (document.layers) {	myBrowser = "NN";	docObj = document.layers;}

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.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist