Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Identity-labs/343e02b5109aaa809c7147114f854017 to your computer and use it in GitHub Desktop.
Save Identity-labs/343e02b5109aaa809c7147114f854017 to your computer and use it in GitHub Desktop.
Inject jQuery in page
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment