View Single Post
Old 01-23-2013, 09:03 PM   PM User | #5
kucster
New to the CF scene

 
Join Date: Jan 2013
Posts: 4
Thanks: 2
Thanked 0 Times in 0 Posts
kucster is an unknown quantity at this point
Thank you very much for your continued help.
I am very sorry, I am very much a noob when it comes to JavaScript. I got mixed up, I thought block meant to block the text.

I tried the CSS solution, but I couldn't get it to work. I think this might be because the iFrame is getting it's own CSS. (Just an hunch, I'm completly open for correction)

I tried creating an on load event but it doesn't seem to be working either. I hate to keep bothering you but I would appreciate any thoughts on why it still isn't working. Thank you!
Code:
<div id="content">
<!-- box-container -->
<div class="box-container">
<div class="holder">
<div class="frame">
<iframe width="760" height="1231" frameborder="0" src="https://*****" marginheight="0" marginwidth="0" onload="load()">Loading... </iframe>
<script language="javascript"> 
function load()
{
var ele = document.getElementsByClassName('ss-footer')[0];
ele.style.display = "none";
}
</script>
</div>
</div>
</div>
</div>
kucster is offline   Reply With Quote