safalkishore
11-26-2002, 05:15 AM
I am using the following code to open a chrome window and resize the same
Main page calls the below line
var temp = window.open("example.htm","","fullscreen=1")
Now example.htm has the following code
<html>
<head>
<script>
onload=init;
function init()
{
window.resizeTo(100,100)
}
</script>
</head>
<body>
</body>
</html>
The above code works perfectly fine with IE 5.5 sp 2 and also IE 6 Version:6.0.2600 but the same fails in IE 6 version 6.0.2800
Any suggestions as to how one could get it to work on all IE versions above 5.5(>)
Main page calls the below line
var temp = window.open("example.htm","","fullscreen=1")
Now example.htm has the following code
<html>
<head>
<script>
onload=init;
function init()
{
window.resizeTo(100,100)
}
</script>
</head>
<body>
</body>
</html>
The above code works perfectly fine with IE 5.5 sp 2 and also IE 6 Version:6.0.2600 but the same fails in IE 6 version 6.0.2800
Any suggestions as to how one could get it to work on all IE versions above 5.5(>)