Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

js - Refresh Page.txt

This is like a meta refresh but it uses javascript and adds a cache busting string that's the date as an integer

js
window.setTimeout(function() {
  window.location.replace(".?cache_buster=" + Date.now());
}, 30000);