Refreshing the parent window from a child window

Refreshing the parent window or main window from a child or small window is a common requirement. For example in an auction script we can display the present highest bid and we can ask the bidder to enter the bid amount by opening a child window. Here once the bid is entered and submitted the child window should close and then the parent window must refresh to display the entered bid amount. Here we will use the code at the child window to refresh the parent window.

Bellow is the sample code for Refreshing parent window from child window

<input type=button onClick=window.open("window-child2.html","Ratting","width=550,height=170,
left=150,top=200,toolbar=0,status=0,"); value="Open Window">


The code of the child window is here

<html>
<head>
<title>(Type a title for your page here)</title>

<SCRIPT language=JavaScript>
<!--
function win(){
window.opener.location.href="window-refreshing.php";
self.close();
//-->
}
</SCRIPT>


</head>


<body bgcolor="#ffffff" >


<font face='Verdana' size='2' >This is the child window opened . Click the button below to close this window and refresh the main window</font>
<br><br>
<center><input type=button onClick="win();" value="Close this window"></center>


</body>
</html>


Mr. Ravi Krishna - Senior Software Engineer
I am a Mocrosoft ASP.net Developer and MCP Certified professional. I have overall 5 years of experience in IT Industry,in that 3 years experience in Microsoft BI(SSAS,SSIS,SSRS). I have experience on various business domains like Automation and Chemical.
https://sites.google.com/site/rkkumardotnet/
Read moreRead more about Contributor