N
NeverLift
But, if it's not open, I don't want to open it . . . using
window.open will open it if it doesn't exist, even if the url in that
open is null (the window is then empty -- but it's open).
The situation is: A main window opens child windows one at a time as
the user requests, each with its own name. The user may click in any
child window or the main window to open a summary window, which has a
name all windows know. I want to get that summary window's handle in
any child window, no matter which window first opened it, so the child
window can run a script in the summary to update its display, should
the user have performed a selection in that child window -- but I do
not want to open it if the user hasn't explicitly done so yet. (All
of this is client-side. The user selections are being accumulated in
the cookie. The 2,000 byte limit is not of concern.)
I know I can have the summary self-update if it's open and the user
merely shifts the focus to it. But it might be visible, even if it's
not the focus, and I'd like to keep it up-to-date on the fly.
I hope that's clear. Feel free to email me directly if not.
Thanks.
window.open will open it if it doesn't exist, even if the url in that
open is null (the window is then empty -- but it's open).
The situation is: A main window opens child windows one at a time as
the user requests, each with its own name. The user may click in any
child window or the main window to open a summary window, which has a
name all windows know. I want to get that summary window's handle in
any child window, no matter which window first opened it, so the child
window can run a script in the summary to update its display, should
the user have performed a selection in that child window -- but I do
not want to open it if the user hasn't explicitly done so yet. (All
of this is client-side. The user selections are being accumulated in
the cookie. The 2,000 byte limit is not of concern.)
I know I can have the summary self-update if it's open and the user
merely shifts the focus to it. But it might be visible, even if it's
not the focus, and I'd like to keep it up-to-date on the fly.
I hope that's clear. Feel free to email me directly if not.
Thanks.