Closing of a small (or child ) window On click of button
A child window can be closed after displaying some information or taking some inputs from the user. The window can be self closed or can be closed by clicking a button or a link inside it.
Opening closing & Passing data from Child window to parent window in JavaScript & refreshing main
To know on how to open a child or small window you can refer to our tutorial here. You can take the input from user and automatically close the window depending on the requirements. Even you can refresh the parent window while before closing the main window.
Here are the commands for closing the child window ( from the child window).
<input type=button onClick="self.close();" value="Close this window">
JQuery Manaing Parent & Child window Pass the data betweeen parent and child window and refreshing part of the parent window once Data is changed at child window.