|
|
Subject:
disabling scrollbars for the frame for certain websites like search.yahoo.com
Category: Computers > Programming Asked by: onewebclick1-ga List Price: $10.00 |
Posted:
05 Aug 2004 12:04 PDT
Expires: 04 Sep 2004 12:04 PDT Question ID: 383928 |
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="://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> </P> </BODY> </HTML> |
|
There is no answer at this time. |
|
There are no comments at this time. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |