Click to See Complete Forum and Search --> : Issues with new version of Firefox


iFLAK
06-13-2006, 05:12 PM
My site works fine in Internet Explorer and also in the version of Firefox that I have, which is version 1.5.0.3, however my friend was trying to launch a player on my site and link doesnt work with his version of Firefox 1.5.0.4.

In fact, none of the links on my site work for him in Firefox 1.5.0.4.

Any suggestions?

Thanks! :D

russell
06-13-2006, 05:15 PM
your friend doesn't have the player installed most likely. how are you doing the links? with embed tags? object tags? just href="someFile.mp3" ?

iFLAK
06-13-2006, 05:22 PM
Script:

<IMG src="home.jpg" border="0" name="home"
onMouseover="document.home.src='homeglow.jpg';"
onMouseout="document.home.src='home.jpg';"
onClick="document.location='index.asp';" style="cursor:pointer;">

Wow that was a quick reply too :)

edit: I forgot to add, all of my links don't work. So the example here is how users navigate to different pages, this one being the link to my home page. (so it's not a player issue)

lmf232s
06-13-2006, 05:50 PM
whats the web site, ill check it out w/ firefox.

iFLAK
06-13-2006, 06:57 PM
Clicky Clicky (http://www.thespyproductions.com)

Thanks :cool:

iFLAK
06-15-2006, 08:59 PM
<<bump>> any ideas guys?

russell
06-16-2006, 12:31 AM
the problem has nothing to do with your code or Firefox.

Your friend has disabled JavaScript.

JS can be disabled in Internet Explorer as well.

This is the pitfall for having all of your navigation in JS. No reason you can't wrap those images in <A> </a> tags with a border="0" to make it work. Also, it is wise to have plain text links at the bottom (or top or wherever) on every page for those users that don't see images...

iFLAK
06-16-2006, 04:55 AM
kk, thanks bradah russ! :D