I've tested my site on IE6 and the latest AOL browser. OK there. However, my popup menu script (taken from the Visual Quickstart Guide on DHTML) won't run in Netscape. Can anyone help?
I didn't download your site, so I have no idea what is in your *.js file. What I did learn, however, is that you do not have "document.all" within the main file -- and in all likelihood, no 'document.layers'. So...
if (document.getElementById)
...ie5+ & nn6 code goes here...
else if (document.all)
...ie 4+ code goes here
else if (document.layers)
...nn4 code goes here...
if (document.layers)
{
document.layers[layerID].document.open();
document.layers[layerID].document.write(content2Display);
document.layers[layerID].document.close();
}
elementby & all use '.style'; nn4 does not
if you need more see the "dHTML: an Introduction" script/tutorial at my site (GrassBlade)
BTW: you can place all of your javascript functions and declarations within one set of <script> tags. Having a set per function is a bit overkill, time consuming, and space wastage.
Bookmarks