Skip to content

Instantly share code, notes, and snippets.

@yratof
Created June 19, 2015 12:08
Show Gist options
  • Save yratof/b328758200358dd3e53e to your computer and use it in GitHub Desktop.
Save yratof/b328758200358dd3e53e to your computer and use it in GitHub Desktop.
Inject jQuery into a side through console
var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
<!-- Wait! -->
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment