Re: a href target= question

2001-12-08 Thread Gonzo Rock
This helps to some extent in that if the new help file is requested the help_window pops to the top. However if the user clicks a help request that is the same as what is currently loaded in the help_window, or the same but with an anchor tag, (helpfile.html#SomeAnchor), then the window will

Re: a href target= question

2001-12-07 Thread Alex
body onBlur=self.focus() On Thu, 6 Dec 2001, Gonzo Rock wrote: I have an app that users get help in... via a url with a target=help_window How can I get that help_window to pop to the top if the user leaves it open and continues with the app? The problem is that subsequent clicks

RE: a href target= question

2001-12-07 Thread Costas Piliotis
; + center:1; window.showModalDialog( pageToLoad,winName,args ); } Still, the best is to use: body onload=window.focus(); method... -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 6:49 AM To: CF-Talk Subject: Re: a href target= question

Re: a href target= question

2001-12-06 Thread Marius Milosav
You have to put the following on your pop up window: body onLoad=window.focus () Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Gonzo Rock [EMAIL

RE: a href target= question

2001-12-06 Thread Joseph DeVore
Gonzo You just need to set a variable and focus. That way if the user clicks a link for help, the window will always focus and return to the front. var helpdoc=window.open(...) helpdoc.focus(); Joseph DeVore VeloxWeb Technologies -Original Message- From: Gonzo Rock [mailto:[EMAIL