Skip to content

Instantly share code, notes, and snippets.

@cedeber
Last active February 3, 2016 09:52
Show Gist options
  • Save cedeber/3f63e0d258e3a2e6364b to your computer and use it in GitHub Desktop.
Save cedeber/3f63e0d258e3a2e6364b to your computer and use it in GitHub Desktop.
Avoid AJAX request cache with a dummy parameter
function uncache( url ) {
var uncached = Math.round( Math.random() * 10000 ) + Date.now();
uncached = ( /\?/.test( url ) ? "&" : "?" ) + "_=" + uncached;
return url + uncached;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment