PDA

View Full Version : chrome window open problems in IE 6


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(>)

krycek
11-26-2002, 05:37 AM
...quite often, you can find your answer simply by searching the forums. :rolleyes:

Something (your code? ;)) makes me guess it is to do with chromeless windows, especially as there is no reason why normal windows would stop working with that version of IE.

Check out these links:

http://www.codingforums.com/showthread.php?s=&threadid=10065

http://www.codingforums.com/showthread.php?s=&threadid=10220

...has that helped? If not, please go into a bit more detail :)

::] krycek [::