Parent window loses control of child when child window is opened in IE mode

Copper Contributor

// example assuming google.com is in my IE mode site list


var win = window.open(url, 'secondMonitor', `resizable=1, scrollbars=1, fullscreen=0, height=500, width=500, left=100, top=0, toolbar=0, menubar=0, location=1, status=1`);

 

setTimeout(() => {
// window does not navigate to new url
win.window.location.href = 'https://www.google.com/search?q=search 2'
}, 5000);

 

setTimeout(() => {
// window does not close
win.close();
}, 10000);

0 Replies