|
Q1353 Is it possible to alter seperately the window vertical or horizontal size?
irt.org | Knowledge Base | JavaScript | Window | Q1353 [ previous next ]
Q1353 Is it possible to alter seperately the window vertical or horizontal size?
After the <body> tag try width:
<body>
<script language="javascript"><!--
if (document.layers)
window.innerWidth = 415;
else if (document.all) {
window.top.resizeBy(415-window.top.document.body.clientWidth,0);
}
//--></script>
|
and height:
<body>
<script language="javascript"><!--
if (document.layers)
window.innerHeight = 415;
else if (document.all) {
window.top.resizeBy(0,415-window.top.document.body.clientHeight);
}
//--></script>
|
|
|
Copyright © 1996-2008 irt.org, All Rights Reserved.