Results 1 to 3 of 3

Thread: Hv menu and Conveyor Belt slideshow

  1. #1
    Join Date
    Aug 2007
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Hv menu and Conveyor Belt slideshow

    1) Script Title: Hv menu and Conveyor Belt slideshow

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...rightslide.htm
    http://www.dynamicdrive.com/dynamici...menu/index.htm

    3) Describe problem: I can't get both of them to work together can someone take a look and tell me how to get them to work. http://www.lilhoofbeatsminiaturehors...om/index2.html
    Thanks

  2. #2
    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

    Get rid of this from your body tag:

    Code:
    onload="dothat();Go(){return}"
    And replace this (in the conveyor script):

    Code:
    window.onload=fillup
    with:

    Code:
    if ( typeof window.addEventListener != "undefined" )
        window.addEventListener( "load", fillup, false );
    else if ( typeof window.attachEvent != "undefined" )
        window.attachEvent( "onload", fillup );
    else {
        if ( window.onload != null ) {
            var oldOnload = window.onload;
            window.onload = function ( e ) {
                oldOnload( e );
                fillup();
            };
        }
        else
            window.onload = fillup;
    }
    That will at least get those two scripts on that page working. There could also be other problems.
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2007
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    it works great now thanks again !!!

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
  •