Skip to content

Instantly share code, notes, and snippets.

@cedbeu
Last active December 17, 2015 09:19
Show Gist options
  • Select an option

  • Save cedbeu/5586604 to your computer and use it in GitHub Desktop.

Select an option

Save cedbeu/5586604 to your computer and use it in GitHub Desktop.
Make the latest jQuery available in the browser's javascript console
var script = document.createElement('script');
script.src = "http://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment