I\'m trying to refresh a page without sending POST from the previous time.
I\'ve tried
window.open(\"postme.php?r=t\", \"_self\");
Well.. late too I suppose, but then it could help someone. I used :
window.location.href = window.location.href;
In replacement of location.reload(); this will refresh the page without prompting user to resend information.