子ウィンドウが閉じられた場合、親ウィンドウをリロードしようとしています。
これがポップアップウィンドウを開く現在のコードですが、閉じたときに親ウィンドウを更新するようにプログラムされていません。追加するコードがわかりません
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;
});
});