can't disable scrollbars for certain websites

R

Raja Kannan

I have this following code,
in the below program if u click on hide it will hide he scrollbars of
the 2 frames by setting the overflow attribute to hidden. the problem
is frame1 seems to hide the scrollbars but the frame2
(search.yahoo.com) seems to be not hiding the scroll bar. there is
something special about the search.yahoo.com com webpage which
prevents from hiding the scrollbar.

so any help would be appreciated if there is anyway we can disable he
scrollbars when pages are loaded with similar pages.

note if run this html in a browser it will give access denied
exception but rename ur htm to .HTA extesnion and run where it will
work.

<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<script language="javascript">
function hide() {
window.frames[0].document.body.style.overflow='hidden';
window.frames[1].document.body.style.overflow='hidden';
}
function unhide() {
window.frames[0].document.body.style.overflow='';
window.frames[1].document.body.style.overflow='';
}
</script>
</HEAD>
<BODY>
<iframe name="frame1" src="http://www.google.com" widht=100 height
=200></iframe><BR>
<iframe name="frame2" src="http://search.yahoo.com" widht=100 height
=100></iframe>
<BR>
<input type="button" onclick="hide();" value="hide" id=button1
name=button1>
<input type="button" onclick="unhide();" value="unhide" id=button2
name=button2>
<P>&nbsp;</P>

</BODY>
</HTML>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top