Skip to content

Instantly share code, notes, and snippets.

@mattosborn
Created April 9, 2015 21:22
Show Gist options
  • Save mattosborn/56508aec05ea98e6ea0b to your computer and use it in GitHub Desktop.
Save mattosborn/56508aec05ea98e6ea0b to your computer and use it in GitHub Desktop.
utils bookmarklet
javascript: (function() {
var scripts = [
'https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.6.0/lodash.js'
];
function drop(url) {
var s=document.createElement('script');
s.setAttribute('src', url);
document.getElementsByTagName('body')[0].appendChild(s);
console.log('loaded', url);
}
scripts.forEach(drop);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment