Results 1 to 3 of 3

Thread: Drop In Content Box - Please help

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

    Default Drop In Content Box - Please help

    Drop In Content Box
    http://www.dynamicdrive.com/dynamici.../dropinbox.htm

    I've been trying to get the drop in content box to work on my site for hours. I can get it to work fine if I use a blank page. However when I try to impliment it on the intended page it never appears.

    I tried moving the "header" code around and have the second code right above the </body> tag. I'm guessing there is a conflict with the code that is already present but I just cant find it. Although my browser does not indicate any errors.

    I was hoping some one here can lend a hand.

    Thanks in advance.

    the page resides at: http://testmyloan.com/defaul3.htm

    Scott
    Last edited by ScottM; 08-28-2005 at 03:01 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

    There could be other problems but, this needs to be done due to onload conflict. Remove:
    Code:
    window.onload=initbox
    from the script. Change your body tag from:
    Code:
    <body onLoad="FP_preloadImgs(/*url*/'images/buttonF1.jpg', /*url*/'images/button11.jpg'); MM_preloadImages('images/but_1_on.gif','images/but_2_on.gif','images/but_3_on.gif','images/but_4_on.gif','images/but_5_on.gif')">
    to this:
    Code:
    <body onLoad="FP_preloadImgs(/*url*/'images/buttonF1.jpg', /*url*/'images/button11.jpg'); MM_preloadImages('images/but_1_on.gif','images/but_2_on.gif','images/but_3_on.gif','images/but_4_on.gif','images/but_5_on.gif');initbox();">
    - John
    ________________________

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

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

    Default

    jscheuer1, that seemed to work fine.

    Thanks for the help!

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
  •