Skip to content

Instantly share code, notes, and snippets.

@saolsen
Created December 6, 2012 21:18
Show Gist options
  • Save saolsen/4228537 to your computer and use it in GitHub Desktop.
Save saolsen/4228537 to your computer and use it in GitHub Desktop.
Add JQuery to the page (for when you need to hack stuff)
// paste into web console
s = document.createElement('script');
s.setAttribute("type", "text/javascript");
s.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js");
document.getElementsByTagName("head")[0].appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment