View Single Post
Old 01-23-2013, 07:01 PM   PM User | #4
xelawho
Senior Coder

 
xelawho's Avatar
 
Join Date: Nov 2010
Posts: 2,461
Thanks: 52
Thanked 457 Times in 455 Posts
xelawho will become famous soon enoughxelawho will become famous soon enough
it's quite likely that your div is getting loaded after the javascript has run, which will render it meaningless. An iframe has an onload event which you could use to fire a function that would hide it once it exists.

or you could try using css just to hide it from the outset.

Code:
<style>
.ss-footer{display:none}
</style>
which reminds me, why if you are trying to hide it are you doing:
Code:
ele.style.display = "block";
?
xelawho is offline   Reply With Quote