I have a html page with a button pop-up. If I click on this button a new window Pops-up, I do all of my changes in this window and then click the close button. The html page with the popup button should refresh after I closed the pop-up window. Is this possible?
I have a html page with a button pop-up. If I click on this button a new window Pops-up, I do all of my changes in this window and then click the close button. The html page with the popup button should refresh after I closed the pop-up window. Is this possible?
Share Improve this question asked Oct 19, 2009 at 15:17 ElitmiarElitmiar 36.9k77 gold badges182 silver badges233 bronze badges3 Answers
Reset to default 10yes.
//reload opener...
window.opener.location.reload();
//close self...
window.close();
<body onunload="opener.location.reload(true);">
<script>function reload(){document.location = document.location}</script>