Forum Moderators: open
I'm looking to make use of tabbing using div layers, so when you click on one part it displays something, and hides other parts and vice versa! it need to work in NS 4 too!
Cheers
Making it work in all browsers means changing how you reference the divs for each browser:
N4.x - document.layers
IE4 and IE5 - document.all
All others - document.getElementById
Do a search on this site for "browser sniffer" to find ways of determining the user's browser so you know which way of referencing to use.
Khem