How do I force Javascript to refresh onload only once? My take:
$(window).ready(function(res){
var hash = '#refreshed';
if(window.location.hash != hash) window.location.replace(window.location + hash)
});
But this doesn't refresh the page. Any ideas why?