Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening a fullscreen window BUT with no scrollbars??

Status
Not open for further replies.

MYQUE

Technical User
May 22, 2002
25
GB
I'm developing a simple Kiosk style html site to run in a browser window whch has been made to fill the whole screen with nothing showing, no sartbar, toolbars, scrollbars, etc.

I have found one script (see below) that works great except it still shows the scrollbars in IE6, even though there is no need for scrollbars as the page contents do not go beyond the screen. Does anybody know how I could edit this script to make the scrollbars disapear completeley? I've tried removing the 'scrollbars' text, using 'noscrollbars' in the script and have had no luck yet.

Thanks for any help.

The script I found:

<script>
<!--
function fullwin(targeturl){
window.open(targeturl,&quot;&quot;,&quot;fullscreen,scrollbars&quot;)
}
//-->
</script>

<form>
<input type=&quot;button&quot; onClick=&quot;fullwin('ProjectVisualisationPanoramicMap.htm')&quot; value=&quot;Start Presentation&quot;>
</form>
 

Thanks for the quick help guys.

Just for you information the <body style=&quot;overflow:hidden&quot;> worked a treat. I now have no scrollbars in IE6 as well.

[thumbsup]

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top