I am trying to reload a parent window if child window get closed.
Here is my current code which opens a popup window, but it has not programmed for refresh parent window when it get closed. I dont know what code to add
jQuery(document).ready(function($) {
jQuery('.top-buttons a').live('click', function(e){
e.preventDefault();
newwindow=window.open($(this).attr('href'),'','height=500,width=850');
if (window.focus) {newwindow.focus()}
return false;
});
});