Skip to content

Instantly share code, notes, and snippets.

View mrcreel's full-sized avatar

Michael R Creel mrcreel

View GitHub Profile
@denolfe
denolfe / jqueryConsole.js
Created May 1, 2015 21:35
Snippet to include jQuery in Chrome Dev Tools
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();