Skip to content

Instantly share code, notes, and snippets.

@holin
Created November 3, 2011 09:28
Show Gist options
  • Select an option

  • Save holin/1336130 to your computer and use it in GitHub Desktop.

Select an option

Save holin/1336130 to your computer and use it in GitHub Desktop.
Add jquery from console
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery() {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// load jQuery and execute the main function
addJQuery();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment