I don\'t seem to be able to get the body onload=\"...\" event to fire in Safari when the page is entered via the back button. It works fine in FF and IE. Is there a Javascript
This was the only thing that worked for me:
http://jkoder.com/prevent-safariany-browser-loading-from-cache-when-back-button-is-clicked/
window.onpageshow = function(event) { if (event.persisted) { window.location.reload(); } };