473,385 Members | 1,409 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Check if a window is open

I have a main webpage that has a list of records, each with a link to a
window.open function call. As an example, a page that opens is
editrecord.aspx?RecordID=34, and another is
editrecord.aspx?RecordID=52. If the user starts changing the contents
of the opened window, and then leaves it open and goes back to the main
page, refreshes the list, and clicks on the same record link again, it
reloads the contents of the page the user had changed, and all the
changes they made are lost. Is there a way to check to see if the
window for that record is open before we reload it, so that I can just
call the focus() function on that window instead of window.open again?

Mar 16 '06 #1
6 34200

Jack wrote:
I have a main webpage that has a list of records, each with a link to a
window.open function call. As an example, a page that opens is
editrecord.aspx?RecordID=34, and another is
editrecord.aspx?RecordID=52. If the user starts changing the contents
of the opened window, and then leaves it open and goes back to the main
page, refreshes the list, and clicks on the same record link again, it
reloads the contents of the page the user had changed, and all the
changes they made are lost. Is there a way to check to see if the
window for that record is open before we reload it, so that I can just
call the focus() function on that window instead of window.open again?


Greetings,

Here is a solution that will allow you to check to see if a child
window is open from the parent that launched it. This will bring a
focus to the child window without reloading its data:

<script language="JavaScript">
function loadUniquePage(page) {
if (opener && !opener.closed){
opener.focus();
}
else {
var myWin = window.open(page,'','width=800,height=600');
opener = myWin;
}
}
</script>

<a href="javascript:loadUniquePage('http://www.google.com')">link</a>

Notice that the link has to be formated like it is above when you
include it in your page for this to work. Just pass it the URL you want
to have opened and voila!

** NOTE: If the user refreshes the parent window, it loses all its
references to any child windows it may have had open.

I have placed this code on my server if you want to just copy the code
from there:

http://www.manifestinteractive.com/u...ildWindow.html

Hope this helps,
- Peter Schmalfeldt

Mar 16 '06 #2
Manifest Interactive said on 17/03/2006 8:26 AM AEST:
Jack wrote:
I have a main webpage that has a list of records, each with a link to a
window.open function call. As an example, a page that opens is
editrecord.aspx?RecordID=34, and another is
editrecord.aspx?RecordID=52. If the user starts changing the contents
of the opened window, and then leaves it open and goes back to the main
page, refreshes the list, and clicks on the same record link again, it
reloads the contents of the page the user had changed, and all the
changes they made are lost. Is there a way to check to see if the
window for that record is open before we reload it, so that I can just
call the focus() function on that window instead of window.open again?

Greetings,

Here is a solution that will allow you to check to see if a child
window is open from the parent that launched it. This will bring a
focus to the child window without reloading its data:

<script language="JavaScript">


The language attribute is deprecated, type is required:

<script type="text/javascript">

function loadUniquePage(page) {
if (opener && !opener.closed){
Global variables should be declared with the 'var' keyword, just like
other variables, but outside the scope of other objects.

It's also a bad idea to use 'opener', which is already a DOM 0 property
of window objects - it refers to the window that opened this current
window, if there is one.

var popWin;
function loadUniquePage(page)
{
if (popWin&& !popWin.closed && popWin.focus){

Methods of host objects should be tested before use.

opener.focus();
This will not guarantee that 'opener' is brought to the front, but worth
a try. If the window is at the back, nothing will seem to be happening
for some users - no new page, no 'focused popup, nothing. They will
have to close the pop-up to get it to work again.

That may not be desirable, but it's a 'feature' of using pop-ups this way.

}
else {
var myWin = window.open(page,'','width=800,height=600');
opener = myWin;
Why create a local variable only to re-assign the reference to the
already created global variable?

popWin = window.open(page,'','width=800,height=600');

}
}
</script>
The full script:

<script type="text/javascript">
var popWin;
function popPage(url)
{
if (popWin &! popWin.closed && popWin.focus){
popWin.focus();
} else {
popWin = window.open(url,'','width=800,height=600');
}
}
</script>


<a href="javascript:loadUniquePage('http://www.google.com')">link</a>


And users without script support will see a link that does nothing.
Better to use:

<a href="http://www.google.com"
onclick="popPage(this.href);return false;">link</a>
At least then non-scripted UAs can navigate to the link.

[...]
--
Rob
Mar 17 '06 #3
RobG said on 17/03/2006 10:05 AM AEST:
[...]
The full script:

<script type="text/javascript">
var popWin;
function popPage(url)
{
if (popWin &! popWin.closed && popWin.focus){
Aggh, gremlins in the works...

if (popWin && !popWin.closed && popWin.focus){

popWin.focus();
} else {
popWin = window.open(url,'','width=800,height=600');
}
}
</script>


[...]

--
Rob
Mar 17 '06 #4
RobG said the following on 3/16/2006 7:05 PM:
Manifest Interactive said on 17/03/2006 8:26 AM AEST:


<snip>

<a href="javascript:loadUniquePage('http://www.google.com')">link</a>


And users without script support will see a link that does nothing.
Better to use:

<a href="http://www.google.com"
onclick="popPage(this.href);return false;">link</a>
At least then non-scripted UAs can navigate to the link.


And if there is an error in popPage then the JS enabled user gets nothing :)

<a href="..." onclick="return popPage(this.href)">

And have popPage return false at the end.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 17 '06 #5
What if main page goes through a postback and the variable is lost? is
there a way to still check if a child window created using the
window.open method still exsits.

Is there a way if I know the name of the window or is there a way to
store the child window handle so that after a refresh on the main page
I can still check if that same page is still open?

Then if that is true can i still setfocus on that child window?

Mar 17 '06 #6
Greg said the following on 3/17/2006 9:26 AM:
What if main page goes through a postback and the variable is lost? is
there a way to still check if a child window created using the
window.open method still exsits.
No. Once the reference is lost it is lost. You have to recreate it and
you run into the focus problem where applying focus() to the window may
focus it but doesn't bring it back to the front.
Is there a way if I know the name of the window or is there a way to
store the child window handle so that after a refresh on the main page
I can still check if that same page is still open?
No.
Then if that is true can i still setfocus on that child window?


See above.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 17 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: W. | last post by:
Hi all ... I have a page with 4 frames in it. If I click on a button in the 4th frame, a new window has to be opened and the value of the listbox in the 3rd frame hoas to be passed .... My code...
2
by: Samir Pandey | last post by:
Hello, I am using the following javascript code to open a new window. Somehow, IE always opens a new window. It doesn't open target url in the window name given. All i want is, if there is a...
5
by: Mark | last post by:
Hi all, I have a website where I want to be able to 'pop up' a window using the window.open call in JavaScript. I remember back in the old days of classic ASP there was a problem where a call to...
4
by: Csaba Gabor | last post by:
Up until a few weeks ago, javascript code like window.open("http://mydomain.com", "windowName"); would always bring my new or reused window to the top, with focus. Lately, Firefox (Deer park...
13
by: tochiromifune | last post by:
Hello The window.open method brings my window to the top only if it is new. If it's being reused, the window does not come to the foreground (with IE 6 it does). Is there a new way in...
3
by: harikrishnan.kamalakannan | last post by:
Hi, When a open an asp page from a modal window through window.open, my session values of parent(the screen that invoked the modal window) are lost. Please this is urgent.
9
by: cendrizzi | last post by:
Hi all, I've read some stuff on this but can't seem to come up with a solution that works right. I have a semi-mature (yet very large and robust) internal web application that currently only...
2
by: John Derry | last post by:
I'm having a curious problem. I open a window with window.open method and supply a url which is a local file of file:/// form. After that, I go into the document of this new window to read the DOM...
5
by: dlf | last post by:
Hello, I'm building a little web with php and javascript. I have inside HEAD the following function: This function receives as parameters a url and a string. In the url it changes "aaaa"...
5
by: ziycon | last post by:
I have the below code and it works fine in FF but in IE 6&7 it wont work, gives an error to do with window.open?? <script type="text/javascript"> <!-- function...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.