Skip to content

Instantly share code, notes, and snippets.

@zo0m
Created July 18, 2015 13:00
Show Gist options
  • Save zo0m/c0b4fef6f0a57592879e to your computer and use it in GitHub Desktop.
Save zo0m/c0b4fef6f0a57592879e to your computer and use it in GitHub Desktop.
add jquery to dev console
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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment