Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 8th, 2006, 12:54 PM
Registered User
 
Join Date: Oct 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default closed parent window when opened child window

When I open child window at that time closed parent window.

Closed parent window when open child window or popup window.

I want solution for this. Anybody can help me?


Parent window like this
------------------------
<html>
<head>
<script language="JavaScript1.2">

function openWin()
{
    loginwin = window.open ("blank.html","eG_" + (new Date()).getTime(),"toolbar=no,menubar=no,location= no,status=no,width=1012,height=709,left=0,top=0,sc reenx=0,screeny=0,resizable=yes, target=('_self')");
    loginwin.focus();
}

function closeWin()
{
    if(loginwin && !loginwin.closed)
        loginwin.close();
}

</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#CCCCCC" onLoad="openWin()";onUnLoad="closeWin()">





</body>
</html>
--------------------------------------------------------------------
Child Window (or) Popup Window like this
-----------------------------------------
<html>
    <body>

This is popup window.
    </body>
</html>
-------------------------------------------------------------------



Regards,
Jaiwin





Similar Threads
Thread Thread Starter Forum Replies Last Post
Closing all child window when browser is closed h@ckerz ASP.NET 2.0 Professional 1 July 17th, 2008 01:04 AM
Closing parent window from child window arnabghosh Javascript How-To 1 December 26th, 2007 01:18 AM
Submitting a parent form from a child window in IE livehed Other Programming Languages 0 February 15th, 2007 01:07 PM
Propogating changes in child window to parent Scripts82 ASP.NET 1.0 and 1.1 Basics 4 September 22nd, 2006 07:07 AM
Close Parent window on opening child window pkdev Javascript How-To 8 April 11th, 2004 12:06 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.