On Mon, Jul 27, 2009 at 8:31 AM, WebPat<webpa...@gmail.com> wrote:
> I have a web page with a button that displays additional information for the
> user. It does a Window.Open to create a "popup" window, then populates it.
>
> If the user goes back to the web page without closing the window, it often
> goes behind the browser and is not visible (which is not the problem). But
> if the user selects the button again, nothing appears to happen because the
> window remains behind the browser, although it is updated.
>
> The popup window has its own source file that populates it. I'd like to add
> a Window.Focus at the end of the population process. That should move the
> popup window to the foreground whenever it is refreshed. I can't get the
> code to actually do that. How can I make that popup window have focus?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


in the body tag add an onfocus event

<body onload="window.focus();">

-- 

Bastien

Cat, the other other white meat

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to