Skip to content

Instantly share code, notes, and snippets.

@awestmoreland
Created February 28, 2016 20:54
Show Gist options
  • Save awestmoreland/c2d7206634ebaf3ce896 to your computer and use it in GitHub Desktop.
Save awestmoreland/c2d7206634ebaf3ce896 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function() {
var cache_buster = Math.random();
var s = document.createElement("script");
s.type = "text/javascript";
s.src = "//domain.com/path/js/javascript.js?"+cache_buster;
jQuery("body").append(s);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment