problems with Netscape - Can not get my mouseovers to work
In IE4 my page works well however with NS4.5 running under communicator The page loads fine but the javascript doesn't work. Any help would be appreciated. my site is www.jitis.com
In IE4 my page works well however with NS4.5 running under communicator The page loads fine but the javascript doesn't work. Any help would be appreciated. my site is www.jitis.com
Anonymous posted this at 19:59 — 19th June 1999.
They have: 5,633 posts
Joined: Jan 1970
seems fine to me....
i think you mean the buttons on the left side, they work with my NS4.5
maybe you disabled javascript?
cu
patrick
----------
http://www.allcgi.de
not quite up yet, but see if you can find something for you!
Jim Shilt posted this at 21:50 — 19th June 1999.
They have: 268 posts
Joined: May 1999
Hey cldennis
You might try taking out the image size attributes in the script. The original script I gave you did not have the size. I think the ( and ) might by tripping you up. Try it and see.
----------
My goal in life is found in Phillipians 4:8-9
My goal in life is found in Phillipians 4:8-9
shoutingrock.org/troop214
cldennis posted this at 17:08 — 20th June 1999.
They have: 11 posts
Joined: Apr 1999
Thakns for your suggestions. How would I check to see if I have Javascript turned off in NS 4.5. I did take out the image attributes but it still didn't work. thanks for the suggestion. Any other ideas. the javascript on the home page is the quickl hits button and the compass like diagram. It should change as you move your mouseover the words to the left.
Jim Shilt posted this at 21:40 — 20th June 1999.
They have: 268 posts
Joined: May 1999
OK here is the correction.
<script language="JavaScript">
<!-- begin script
window.onerror = null
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserVer >= 3) version = "n3";
else version = "n2";
if (version == "n3") {
begin = new Image;
begin.src = "./images/temp/start.gif";
design = new Image;
design.src = "./images/temp/designfr.gif";
hosting = new Image;
hosting.src = "./images/temp/hostfr.gif";
support = new Image;
support.src = "./images/temp/supportfr.gif";
end = new Image;
end.src = "./images/temp/finalfr.gif";
}
function flip (imageID,objectName) {
if (version == "n3") {
document.images[imageID].src = eval(objectName + ".src");
}
}
// endscript -->
</script>
Also you have the last image source in this script as final. That is a restricted word. I replaced it with end. You will need to do the same on the links.
Other than removing the final I just elimated the size attributes.
Let me know if this doesn't work.
----------
My goal in life is found in Phillipians 4:8-9
My goal in life is found in Phillipians 4:8-9
shoutingrock.org/troop214
cldennis posted this at 03:28 — 24th June 1999.
They have: 11 posts
Joined: Apr 1999
Thanks. I will give it a try and let you know how it works.
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.