Log in

View Full Version : Ultimate Fade-In Slideshow problem with FF3



Vidmo
01-14-2009, 10:00 PM
1) Script Title: Ultimate Fade-In Slideshow

2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm

3) Describe problem: I'm using this script on my family web page and it's working great with IE and Opera, but it does not work with FF.

http://vidmar.homedns.org

What's odd is that the script works in FF on the DD script page though. So it must be something wrong with my page. Please give it a look and see.

TIA,
Vidmo

PS: This was my very first web page I've ever put together, be kind! :)

Vidmo
01-16-2009, 02:02 PM
I tried looking at the page in the Firebug, but I guess I don't even know what sort of problem I'm looking for. Any help is appreciated.

jscheuer1
01-16-2009, 02:49 PM
You have placed the in body call for the script in an invalid location:


<tr>
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 315, 210, 3, 3000, 1, "R")
</script>
</tr>

If you want it in that tr, it must also be within a td. Other browsers error correct that for you, FF does not. Do it like so:


<tr><td>
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 315, 210, 3, 3000, 1, "R")
</script></td>
</tr>