Skip to content

Instantly share code, notes, and snippets.

@elidupuis
Created May 13, 2011 17:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save elidupuis/970932 to your computer and use it in GitHub Desktop.
Save elidupuis/970932 to your computer and use it in GitHub Desktop.
How to create a bookmarklet with an external js file.
// use this code as your href attribute on your 'Install this bookmarklet' anchor tag.
// borrowed from http://net.tutsplus.com/tutorials/javascript-ajax/create-bookmarklets-the-right-way/
javascript:(function(){var jsCode = document.createElement('script');jsCode.setAttribute('src', 'http://example.com/path/to/file.js');document.body.appendChild(jsCode);}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment