Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 06-19-2007, 11:34 AM   PM User | #1
helenturner
New to the CF scene

 
Join Date: Jun 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
helenturner is an unknown quantity at this point
javascript close child window check parent window

Hi

I'm quite a javascript novice and need some help.
I've got a site with a portfolio section that opens as a new window at a specific size. I want to be able to close the portfolio (child) window, but I want to check that the parent window is still open before closing the child window. Can I do this?
And can I open the parent window if it is closed on closing the child? Basically I don't want someone to have closed the parent, then close the child window and end up with no windows open...
I've got bits of javascript in there, but to be honest I could do with a bit of clean code all round.
The site is at: http://www.zikotown.com/websitedev/homepage_d.htm
If you click on either the fox or racoon you will see the child page. At the minute when you close the portfolio child page (back to zikotown button) I've got it opening the main site again - but this is really rubbish!

I hope this makes sense to someone out there! Any assistance would be very gratefully received.

Thank you
Helen
helenturner is offline   Reply With Quote
Old 06-19-2007, 03:56 PM   PM User | #2
glenngv
Supreme Master coder!


 
glenngv's Avatar
 
Join Date: Jun 2002
Location: Los Angeles, CA Original Location: Philippines
Posts: 10,241
Thanks: 0
Thanked 112 Times in 111 Posts
glenngv will become famous soon enough
This is how you check the opener window from the child window.

Code:
if (opener && !opener.closed){
   alert("Opener is open.");
}
else {
   alert("Opener is closed.");
}
__________________
Glenn
_____________________________________________
Play Tower of Hanoi Android app (Ad-FREE!)
Play Tower of Hanoi Android app (FREE!)
Go to Tower of Hanoi Leaderboard
Play Tower of Hanoi Facebook app
glenngv is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:14 AM.


Advertisement
Log in to turn off these ads.