mauritsgrootveld
12-29-2006, 09:04 AM
Hi, I am trying to use insertAdjacentHTML with css...But it seems it is not working very well... everything loads well and no errors. But after inserting some css with insertadjacent I insert a div that has to follow the rules that are set by the previous insertadjacent. This does not work. Does someone know a solution to this? Could you please give me an example? I use the following code:
function insertScript()
{
var sHTML='<style type="text/css">body{margin:0;height:100%;overflow-y:auto;padding: 0 16px 0 0;}#menu{display:block;top:0px;left:0px;width:100%;heigth:100%;position:fixed;z-index: 9999;}* html #menu{position:absolute;}</style><!--[if lte IE 6]><style type="text/css">/*<![CDATA[*/ html{overflow-x:auto; overflow-y:hidden;} /*]]>*/</style><![endif]--><!--[if lte IE 6]><style>/*<![CDATA[*/ #adsie{position:absolute; top:0px; left:0;}/*]]>*/</style><![endif]-->';
window.document.body.insertAdjacentHTML("afterBegin",sHTML);
var sCreative='<div id="menu"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="100%"><param name="movie" value="hockeystick.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="SCALE" value="exactfit" /><embed src="hockeystick.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" scale="exactfit"></embed></object></div>';
window.document.body.insertAdjacentHTML("beforeEnd",sCreative);
}
function insertScript()
{
var sHTML='<style type="text/css">body{margin:0;height:100%;overflow-y:auto;padding: 0 16px 0 0;}#menu{display:block;top:0px;left:0px;width:100%;heigth:100%;position:fixed;z-index: 9999;}* html #menu{position:absolute;}</style><!--[if lte IE 6]><style type="text/css">/*<![CDATA[*/ html{overflow-x:auto; overflow-y:hidden;} /*]]>*/</style><![endif]--><!--[if lte IE 6]><style>/*<![CDATA[*/ #adsie{position:absolute; top:0px; left:0;}/*]]>*/</style><![endif]-->';
window.document.body.insertAdjacentHTML("afterBegin",sHTML);
var sCreative='<div id="menu"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="100%"><param name="movie" value="hockeystick.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="SCALE" value="exactfit" /><embed src="hockeystick.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" scale="exactfit"></embed></object></div>';
window.document.body.insertAdjacentHTML("beforeEnd",sCreative);
}