Skip to content

Instantly share code, notes, and snippets.

@jodytate
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save jodytate/56537bcc46a5db1b99b7 to your computer and use it in GitHub Desktop.

Select an option

Save jodytate/56537bcc46a5db1b99b7 to your computer and use it in GitHub Desktop.
load jquery in the browser console
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
setTimeout(function() {
jQuery.noConflict();
console.log('jQuery loaded');
}, 1000);
void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment