window.open delays
I've noticed in the past that, when calling window.open there is often quite a delay before a new window is created and opened in IE so, today I thought that I'd run a little test to see how long. I created a page with nothing in it and added the following javascript
window.attachEvent("onload", openPopUp) ; function openPopUp() { alert( "starting") ; var hWnd = window.open("about:blank", "foo") ; }
The result? 6 seconds elapsed between accepting the alert message and the new window appearing. What's more, I acheived identical results from 2 diferent PC's!