Part of my home page is not visible in Netscape or Mozilla

L

Lowell Copeland

I have created a website,
http://www.ajcongress.org which works fine if accessed
using IE, but if the browser is Netscape or Mozilla, then
the left side of the home page generates an error message:

"The requested URL / NN Menus.htm was not found on this
server."

The only code I have found that Mentions "NNMenus.htm" is
as follows.

if(!(document.all))
{
if (document.layers)
{
window.location.replace("NNMenus.htm")
}
else
{
window.loction.replace("NoMenus.htm")
}
}

I know that I don't have a page called "NNMenus.htm"
but I did not write this piece of code, it was created by
Front Page, and I don't know what to do with it, or what I
should put onto a page called NNMenus.htm"

There is also another piece of script above this that may
help:

<SCRIPT LANGUAGE=JavaScript>
<!--Hide script from older browsers--
function jumpPage(newLoc)
{
newPage = newLoc.options[newLoc.selectedIndex].value
if(newPage != "")
{
window.top.location.href = newPage
}
}
//--End of Hide Script

Does anyone have any ideas what I can do to make this page
compatible with Netscape and Mozilla.

Thanks

Lowell Copeland
(e-mail address removed)
or
(e-mail address removed)
 
S

Stefan B Rusynko

The first script says if the browser supports layers (NN) the use the NNMenus.htm page (which you have to create)




| I have created a website,
| http://www.ajcongress.org which works fine if accessed
| using IE, but if the browser is Netscape or Mozilla, then
| the left side of the home page generates an error message:
|
| "The requested URL / NN Menus.htm was not found on this
| server."
|
| The only code I have found that Mentions "NNMenus.htm" is
| as follows.
|
| if(!(document.all))
| {
| if (document.layers)
| {
| window.location.replace("NNMenus.htm")
| }
| else
| {
| window.loction.replace("NoMenus.htm")
| }
| }
|
| I know that I don't have a page called "NNMenus.htm"
| but I did not write this piece of code, it was created by
| Front Page, and I don't know what to do with it, or what I
| should put onto a page called NNMenus.htm"
|
| There is also another piece of script above this that may
| help:
|
| <SCRIPT LANGUAGE=JavaScript>
| <!--Hide script from older browsers--
| function jumpPage(newLoc)
| {
| newPage = newLoc.options[newLoc.selectedIndex].value
| if(newPage != "")
| {
| window.top.location.href = newPage
| }
| }
| //--End of Hide Script
|
| Does anyone have any ideas what I can do to make this page
| compatible with Netscape and Mozilla.
|
| Thanks
|
| Lowell Copeland
| (e-mail address removed)
| or
| (e-mail address removed)
|
 
J

jon spivey

You'll need to have NNMenus.htm for netscape 4 and NoMenus.htm for all other
browsers - presumably the author of the script supplies these?

There's no way to get that script in any browser except IE without a
re-write from the ground up - some of the code used is sctrictly IE only.
The techniques in that script are very old though - maybe you could beg
borrow or steal a better menu script....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top