Re: How to close the child windows from perent window?
Posted By:
Ravi_Verelly
Posted On:
Monday, April 23, 2001 01:57 PM
If you are opening the child window using window.open then only it is possible to close the child window from opener window.
Ex:
Open window:
winTest=window.open('test.html','winTest');
Close window:
winTest.close();