Skip to content

Instantly share code, notes, and snippets.

@vman
Created July 16, 2013 07:46
jQuery.getCachedScript = function(url,callback){
jQuery.ajax({
dataType: "script",
cache: true,
url: url,
success:callback
});
};
jQuery.getCachedScript(_spPageContextInfo.webAbsoluteUrl+"/_layouts/15/sp.runtime.js",function(){
console.log("sp.runtime.js loaded");
jQuery.getCachedScript(_spPageContextInfo.webAbsoluteUrl+"/_layouts/15/sp.js",function(){
console.log("sp.js loaded");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment