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