I was wondering if anyone knew of a way to prevent IE from popping up child windows behind the parent.
Have you tried giving the new window focus?
newwindow = window.open(...);
if (window.focus) {
newwindow.focus();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With