I have the following code snippet for opening a child window which should stay on top of the parent window
"var a = window.open('" + url + "', '_blank','height=400,width=400,status=yes,toolbar=no,menubar=no,location=no');";
However, popup window is opening and not shown on top of the parent window.
And I would like to keep the keep the child window stacked and no other child windows should be allowed to open until I close the already opened child window popup.
This issue is only in IE browser.