Javascript refresh page -
I have a html page with a button pop-up if I click on this button on a new window pop-up , Then I do all my changes in this window and then click on the close button. After closing the pop-up window, the html page with the popup button should be refreshed. Is this possible?
Yes.
// reload openers. .. window.opener.location.reload (); // Close self ... window.close ();
Comments
Post a Comment