Cache Busting Jquery DIV reload
I am using this to reload a status.
But its getting cached is there a quick way to add something to bust the cache?
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
- <script>
- var auto_refresh = setInterval(function () {
- $('#legend').fadeOut('slow').load('status.html?').fadeIn("fast");
- }, 10000);
- </script>