So this is incorrect then?
Maybe I am explaining it incorrectly. I am trying to have the menu show over an iframe of a PDF and an iframe of a Flash Object.
Does this hinder it unfix-able?
Code: |
<script type="text/javascript">
function iFrameHeight() {
var h = 0;
if (!document.all) {
h = document.getElementById('blockrandom').contentDocument.height;
document.getElementById('blockrandom').style.height = h + 60 + 'px';
} else if (document.all) {
h = document.frames('blockrandom').document.body.scrollHeight;
document.all.blockrandom.style.height = h + 20 + 'px';
}
}
</script>
<div class="contentpane">
<iframe id="blockrandom"
name="iframe"
src="http://secure.smilebox.com/ecom/openTheBox?sendevent=4d6a63794d7a41794d6a6b3d0d0a&blogview=true&campaign=blog_playback_link&wmode=transparent"
width="100%"
height="825"
scrolling="auto"
class="wrapper">
This option will not work correctly. Unfortunately, your browser does not support inline frames.</iframe>
</div>
|
Where should I put the wmode=transparent then?
Thanks!
X