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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

scroll bar kept showing on full screen

Status
Not open for further replies.

soonkhoo

Programmer
Dec 8, 2000
133
MY
Hi, how do I hide the scrollbar when I open a window in fullscreen? I had changed the feature to scrollbars=no and yet when it's fullscreen, it shows. However, it didn't show if my window is in a frameset. hhmmmm....

thanks.
btw, I'm using IE 5.5

Regards,
Soon
 
try that..

<html>
<head>
<script language=&quot;javascript&quot;>
<!--//
function popup(url)
{
window.open(url,&quot;Popup&quot;, &quot;width=355,height=390,directories=no,toolbar=yes,resizable=no,menubar=yes,scrollbars=no&quot;);
}
//-->
</script>
</head>
<body bgcolor=white>
<a href=&quot;javascript:popup('new.html')&quot;>Click here to see the box in action!!</a>

</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top