Hi, i have a web app that launches an URL in other windows/tabs. I would like to check if the window/tab exists; if not, i want to create it else i would like to pick it in first position. I use:
wf=window.open(address, web_form_target, 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=640,height=450');
if(wf!=null)
wf.focus();
But it goes well only the first time (in IE, not in Firefox); if i create a new tab in the window, when i call window.open() nothing happens; if i close the window it the recreates it but keeps it iconized ... Is there a way i can follow to obtain a good result?
Thanks in advance Greetings, c.