Results 1 to 3 of 3

Thread: Ultimate Fade-In Slideshow problem with FF3

  1. #1
    Join Date
    Jan 2009
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-In Slideshow problem with FF3

    1) Script Title: Ultimate Fade-In Slideshow

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.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!

  2. #2
    Join Date
    Jan 2009
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    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.

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    You have placed the in body call for the script in an invalid location:

    Code:
          <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:

    Code:
          <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>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. The Following User Says Thank You to jscheuer1 For This Useful Post:

    Vidmo (01-16-2009)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •