Posted by Munkeyjunkey on 11/27/78 11:59
I am trying to manipulate my browser so that when the frames page loads
it doesn't show all the toolbars, but it isn't working. Below is the
code I have:
<!--
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<script language="JavaScript">
window.onload=change;
function change()
{
var windowAttributes;
windowAttributes = 'scrollbars=no';
windowAttributes += 'toolbar=no';
windowAttributes += 'menubar=no';
var windowAttributes += 'top=0';
windowAttributes += 'left=0';
windowAttributes += 'width=900';
windowAttributes += 'height=800';
}
</script>
<title>New Page 2</title>
</head>
!-->
Any ideas on what I am doing wrong?
Thanks
Munkeyjunkey
Navigation:
[Reply to this message]
|