-
focus of popup window
Hi,
I have an asp that allow user to send email, after that, system will popup a msg and return to the previous screen. I use the following code to do so:
...
top.location.href = locationPath;
remote=window.open(theURL,winName,features);
remote.focus();
...
but I always have the msg window popup, then goes to the back. Is there any method to make in on top except using showModalDialog?
Thx!
-
a popup should anyway, try taking the remote.focus() out and see if thsat helps
-
Hi,
It doesn't so I add it, but the result is the same.
Thx!!