Log in

View Full Version : Drop In Content Box - Please help



ScottM
08-28-2005, 02:57 AM
Drop In Content Box
http://www.dynamicdrive.com/dynamicindex17/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

jscheuer1
08-28-2005, 03:48 AM
There could be other problems but, this needs to be done due to onload conflict. Remove:

window.onload=initboxfrom the script. Change your body tag from:

<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:

<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();">

ScottM
08-28-2005, 10:46 PM
jscheuer1, that seemed to work fine.

Thanks for the help!