Take this code snippet for example:
window.location.href = \'mysite.htm#images\';
Already being on the site mysite.htm and tri
mysite.htm
Try this: window.location.href = 'mysite.htm?';
window.location.href = 'mysite.htm?';
EDIT: This will only work the first time; after that, the caching takes effect again.