Skip to content

Instantly share code, notes, and snippets.

@davidlbatey
Created January 31, 2013 02:05
Show Gist options
  • Save davidlbatey/4679310 to your computer and use it in GitHub Desktop.
Save davidlbatey/4679310 to your computer and use it in GitHub Desktop.
Add jquery to console if the site is not using it. So useful.
var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment