Do something like:
var loc = window.location.href;
window.location.href = loc + '?n=' + new Date().getTime();
EDIT: The only option to reload static resources (see comment below) is to add a random number to their server-side URLs while listening to query string n.
source
share