Results 1 to 4 of 4

Thread: Conveyor Belt slideshow script causing errors in IE

  1. #1
    Join Date
    Oct 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Conveyor Belt slideshow script causing errors in IE

    Conveyor Belt slideshow

    http://www.dynamicdrive.com/dynamici...rightslide.htm

    I recently added the Conveyor belt slideshow into my site.
    I also have a dynamic menu in the site that i cannot change.

    you can view them in firefox here: http://pm102127.pmws2.com/?page=test
    my problem is when viewed in IE the dynamic menu no longer shows up.

    i have been working on a way to fix this for a few days now and i am stumped. could anyone give me some advice on this.

    Daniel
    Last edited by Edmo; 10-21-2005 at 10:42 AM.

  2. #2
    Join Date
    Oct 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    well try to get another dynamic menue code that can be vewed ib IE instead of changing the code you have.

  3. #3
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Try locating the line:

    Code:
    window.onload=fillup
    and replacing that with:

    Code:
    if (window.addEventListener)
    window.addEventListener("load", fillup, false)
    else if (window.attachEvent)
    window.attachEvent("onload", fillup)
    else if (document.getElementById)
    window.onload=fillup
    This will work only if the conflict between the two scripts rests only in the body onload event hander. Otherwise unfortunately there are just too many possibilities why the two scripts don't work together.

  4. #4
    Join Date
    Oct 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you, that did fix the problem in IE.

    It still doesn't work in Opera, but i'm not gonna worry about that.

    Daniel

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
  •