Skip to content

Instantly share code, notes, and snippets.

@vndmtrx
Created August 5, 2012 15:57
Show Gist options
  • Save vndmtrx/3265532 to your computer and use it in GitHub Desktop.
Save vndmtrx/3265532 to your computer and use it in GitHub Desktop.
Injetanto jQuery do Google
(function() {
var script = document.createElement("script");
script.src = "//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js";
script.onload = script.onreadystatechange = function(){ console.log("done;"); };
document.body.appendChild(script);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment