Skip to content

Instantly share code, notes, and snippets.

@ooredroxoo
Created June 11, 2013 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooredroxoo/5753600 to your computer and use it in GitHub Desktop.
Save ooredroxoo/5753600 to your computer and use it in GitHub Desktop.
Underscorefy is an equivalent project jQuerify posted in April 2009 on the site http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet, the gist of this order is to provide a bookmarklet to inject Underscore.js within any page. The practical uses for my person are able to use the functions within the underscore.js devto…
javascript:(function(){var s=document.createElement('script');s.setAttribute('src','http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js');document.getElementsByTagName('body')[0].appendChild(s);})()
(function(){
var s=document.createElement('script');
s.setAttribute('src','http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js');
document.getElementsByTagName('body')[0].appendChild(s);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment