I have a question: I open a popup using javascript, then a popup appears, there I make changes to the css file, when I click the Close button, the following javascript open page is used to refresh the window
window.opener.location.reload();
window.close();
But css remains cached in the browser, after the next update it only disappears. Is there a way that I can hard update the open page using javascript?
source
share