Tagged Questions
5
votes
5answers
14k views
How do I reload a page without a POSTDATA warning in Javascript?
I want to reload a page using:
window.location.reload(true);
But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page ...