Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
196
rated 0 times [  200] [ 4]  / answers: 1 / hits: 29102  / 15 Years ago, tue, march 16, 2010, 12:00:00

We've got the following situation, running from a single domain:



Page A uses window.open() to open a named window (a popup player). window.open() gives page A a reference to the window.



User now reloads page A. The reference to the named window is lost. Using window.open() to find the window has the unfortunate side effect of reloading it (undesirable). Is there any other way to get a reference to this window?


More From » window.open

 Answers
7

Try this:



var playerUrl = 'http://my.player...';
var popupPlayer= window.open('', 'popupPlayer', 'width=150,height=100') ;
if(popupPlayer.location.href == 'about:blank' ){
popupPlayer.location = playerUrl ;
}
popupPlayer.focus();


It will open a blank window with a unique name. Since the url is blank, the content of the window will not be reloaded.


[#97323] Saturday, March 13, 2010, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
daquanmilesw

Total Points: 57
Total Questions: 102
Total Answers: 110

Location: Wallis and Futuna
Member since Sat, Aug 6, 2022
2 Years ago
daquanmilesw questions
;