Results 1 to 2 of 2

Thread: My drop down box dissappeared need help

  1. #1
    Join Date
    Mar 2006
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default My drop down box dissappeared need help

    I had a drop down up box for www.cardiacgym.com, that people would eneter their name, and e-mail address and subscribe but ever sincce i added a new script it dissapeare. I any one would look at my script code and try to figure it out than i would appreciate it
    Doug

  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

    One problem you have is onload event conflict. Where you have:

    Code:
    window.onload=show
    Just remove that line from your page. Where you have:

    Code:
    <body onload="MM_timelinePlay('Timeline1')">
    Change it to:

    Code:
    <body onload="MM_timelinePlay('Timeline1');show();">
    There could be other problems.
    - 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
  •