Created
February 28, 2016 20:54
-
-
Save awestmoreland/c2d7206634ebaf3ce896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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