Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q758 How can I dynamically change scrollbars visible property within defined frames in Netscape Navigator 4 and Internet Explorer 4?

You are here: irt.org | FAQ | JavaScript | scroll | Q758 [ previous next ]

In Internet Explorer 4+:

<body onLoad="document.body.style.overflow='hidden'">

In Netscape Navigator 4 use:

<script language="JavaScript"><!--
window.scrollbars.visibility = false;
//--></script>

Although to do this you'll need to sign your JavaScript code.

Feedback on 'Q758 How can I dynamically change scrollbars visible property within defined frames in Netscape Navigator 4 and Internet Explorer 4?'

©2018 Martin Webb