Iframe no scrollbar?
Posted
by NebNeb
on Stack Overflow
See other posts from Stack Overflow
or by NebNeb
Published on 2010-03-29T16:53:12Z
Indexed on
2010/03/29
17:13 UTC
Read the original article
Hit count: 142
I cant seem to show the scrollbar in my iframe. I am making a script that will rotate a page 180 degrees and it uses iframes. With this code it showed no scrollbar.
<iframe frameborder="0" id="browser" src="http://google.com/"></iframe>
It loads dynamically(although this is after a button is pressed) but this doesnt change anything.
<script language="javascript">
function refresh()
{
document.getElementById("browser").src = document.getElementById("url").value;
document.getElementById("browser").style.visibility="visible";
}
function hide()
{
window.location = "?hide&url="+document.getElementById("url").value;
}
</script>
© Stack Overflow or respective owner