Skip to content

Instantly share code, notes, and snippets.

@zackexplosion
Created June 1, 2015 07:23
Show Gist options
  • Save zackexplosion/8b1b96663a93129c741c to your computer and use it in GitHub Desktop.
Save zackexplosion/8b1b96663a93129c741c to your computer and use it in GitHub Desktop.
simple javascript version cache control
var ENV = 'production';
var version = Date.now();
if(ENV == 'production'){
version = '20150601';
}
var url = 'https://gist.github.com/cstony0917/425c39beb6ec83662e26.js';
$.ajax(url + '?v=' + version);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment