Cache Busting Jquery DIV reload

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?

  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  2. <script>
  3. var auto_refresh = setInterval(function () {
  4. $('#legend').fadeOut('slow').load('status.html?').fadeIn("fast");
  5. }, 10000);
  6. </script>