I want to close the child window, from parent window using java script.
Created Jun 27, 2008
Firat Tiryaki
create the new window with an object name
childWindow=window.open(...);
then you can use the close method
childWindow.close();
Created Jun 27, 2008
Firat Tiryaki
create the new window with an object name
childWindow=window.open(...);
then you can use the close method
childWindow.close();