|
Posted by Munkeyjunkey on 11/27/66 11:59
I am trying to manipulate the browser when it loads, but it isn't
working. When my frames page loads I want to remove all the toolbars
and junk, below is my code:
<!--
<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';
windowAttributes += 'top=0';
windowAttributes += 'left=0';
windowAttributes += 'width=900';
windowAttributes += 'height=800';
var popUp = window.open('frames.htm', 'home', windowAttributes);
}
</script>
<title>New Page 2</title>
</head>
!-->
Any ideas on how I can fix this?
Thanks
Munkeyjunkey
Navigation:
[Reply to this message]
|