Hi,
I have a link on my web page. On click, this link opens a new window using following code. If the user TABs to see something on main web page the new window goes behind. If the user clicks on the link again the window doesn't come up. Is there any way we can bring the window in front (setfocus) if it already exists ?
remote1 = window.open("","remotewin","width=600,height=135,top=250,left=100"
;
remote1.location.href = "File1.htm";
if (remote1.opener == null)
remote1.opener = window;
remote1.opener.name = "opener";
Thanks
I have a link on my web page. On click, this link opens a new window using following code. If the user TABs to see something on main web page the new window goes behind. If the user clicks on the link again the window doesn't come up. Is there any way we can bring the window in front (setfocus) if it already exists ?
remote1 = window.open("","remotewin","width=600,height=135,top=250,left=100"
remote1.location.href = "File1.htm";
if (remote1.opener == null)
remote1.opener = window;
remote1.opener.name = "opener";
Thanks