Skip to content

Instantly share code, notes, and snippets.

@beshur
Last active October 3, 2015 02:57
Show Gist options
  • Save beshur/2376667 to your computer and use it in GitHub Desktop.
Save beshur/2376667 to your computer and use it in GitHub Desktop.
Jquery on the go
// paste this into console
var script = document.createElement('script');
script.setAttribute('type', 'text/javascript');
script.setAttribute('src', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js');
document.body.appendChild(script);
//typeof $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment