Results 1 to 4 of 4

Thread: Please help...Memory scroller & Conveyor belt script not working 2gether

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

    Default Please help...Memory scroller & Conveyor belt script not working 2gether

    Memory scroller & Conveyor belt script both from DD will not move when both are on the same page. I tried to take out the onloads and put a<body onload> tag (with both loads seperated by ; with no luck. any help would be greatly appreciated.
    Last edited by Hades; 09-05-2005 at 05:23 AM.

  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

    This:
    Code:
    <Body onload="populatescroller();fillup()"
    belongs as the actual body tag of the html page, not in the script. And it should look like this:
    HTML Code:
    <body onload="populatescroller();fillup()">
    You should already have a body tag on your page. It may already have other things in it like (for example):
    HTML Code:
    <body bgcolor="#3300cc" text="#ffff00">
    If so, just add to it:
    HTML Code:
    <body bgcolor="#3300cc" text="#ffff00" onload="populatescroller();fillup()">
    Only one <body> tag per page allowed.
    - John
    ________________________

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

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

    Default

    I am pretty new at Javascript and would appreciate any other suggestions. I did follow your ex but still no movment. Sorry for the trouble.
    Last edited by Hades; 09-05-2005 at 05:22 AM.

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

    PLEASE: Include the URL to your problematic webpage that you want help with.
    - John
    ________________________

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

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
  •