-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a window.open call in a page, whose window itself is opened by a window.open call.
So there are 2 windows already on the screen
Now On the next window.open call:
IE7 opens a new window
Firefox opens a new tab in the topmost parent window
Chrome opens a new tab in current window
Is it…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
Window.open javascript function is not working in Mozilla, but working in other browsers, here is what I have write.
<a href="javascript:window.open('../Terms.aspx','Terms','width=550,height=400')">
click here</a>
Please tell me What I am doing wrong?
Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How to use in jQuery data from window.open
w = window.open("http://google.com",
'test_window',
'left=20,top=20,width=500,height=500,toolbar=1,resizable=1');
browser = w.document;
// execute commands in browser
$(browser).ready(function(){
alert($('input', browser)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
We are use window.open for open popup. But then we want find it and close. Unfortunately we can`t save this popup handler to variable.
>>> More