I have a static webpage that is being regenerated by a tool at user request. When the regeneration is complete, the page reloads. This is not HTTPS. The problem is that the page does not update properly in Chrome. To be fair, I see the issue sometimes in IE as well, but it seems to be primarily chrome. I have tried the following with no success:
1. Checking 'Disable cache' in chrome developer tools
2. Appending a random string to the page when reloading, i.e.
top.location = top.location.href + "?r=" + jQuery.now();
3. Trying various methods of reloading, like history.go(), location.reload(), everything I could find.
But the problem persists... is there anything else I can try?