I'm a little new to java so bare with me here. I need a quick script for a window resize that only shows the border. I've been using the one below but it doesn't do what I need. I know you need to add
toolbar=no,menubar=no,location=no,scrollbars=no,resize=no
in somewhere but not sure how. Please help
<script language="JavaScript">
function mov_it()
{// version 1.00
self.moveTo(0,0);//specify the pixel width, pixel height here
self.resizeTo(600,400);//specify the pixel width, pixel height here
}
//-->
</script>
</head>
<body>
<body onload="mov_it();">
toolbar=no,menubar=no,location=no,scrollbars=no,resize=no
in somewhere but not sure how. Please help
<script language="JavaScript">
function mov_it()
{// version 1.00
self.moveTo(0,0);//specify the pixel width, pixel height here
self.resizeTo(600,400);//specify the pixel width, pixel height here
}
//-->
</script>
</head>
<body>
<body onload="mov_it();">