Skip to content

Instantly share code, notes, and snippets.

@sandro
Created January 29, 2009 05:01
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save sandro/54389 to your computer and use it in GitHub Desktop.
Save sandro/54389 to your computer and use it in GitHub Desktop.
bookmarklet template
// TODO: remove spaces and newlines
javascript:(function(){
s=document.createElement('script');
s.type='text/javascript';
s.src='http://example.com/bookmarklet.js';
document.body.appendChild(s);
})();
// TODO: bookmarklet code needs to be in an anchor tag
// <a href="javascript:(function(){s=document.createElement('script');s.type='text/javascript';s.src='http://example.com/bookmarklet.js';document.body.appendChild(s);})();">My Bookmarklet</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment