Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anthonyringoet/2880370 to your computer and use it in GitHub Desktop.
Save anthonyringoet/2880370 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