Skip to content

Instantly share code, notes, and snippets.

@jonathanweiss
Created February 11, 2014 08:36
Show Gist options
  • Save jonathanweiss/8931226 to your computer and use it in GitHub Desktop.
Save jonathanweiss/8931226 to your computer and use it in GitHub Desktop.
Injects _ into the current website.
(function(url){
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.src = url;
head.appendChild(script);
})('http://underscorejs.org/underscore-min.js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment