JavaScript – How to Refresh Page

javascript

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?

Best Answer

yes.

//reload opener...
window.opener.location.reload();
//close self...
window.close();
Related Question