Click to See Complete Forum and Search --> : change the window size


pelegk1
10-23-2003, 06:57 AM
i want to change the window width and height at load time to certain size how do i do that?

requestcode
10-23-2003, 07:10 AM
Try this:
<script language="JavaScript">
function doresize()
{
window.resizeTo(600,400)
}
window.onload=doresize
</script>