Skip to content

Instantly share code, notes, and snippets.

@byteface
Created March 15, 2015 22:46
Show Gist options
  • Save byteface/acc19c7ee880f8b83a31 to your computer and use it in GitHub Desktop.
Save byteface/acc19c7ee880f8b83a31 to your computer and use it in GitHub Desktop.
import jquery into console from a CDN.
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