grimen (owner)

Fork Of

gist: 54389 by sandro bookmarklet template

Revisions

gist: 79743 Download_button fork
public
Public Clone URL: git://gist.github.com/79743.git
Embed All Files: show embed
bookmarklet_template.js #
1
2
3
4
5
6
7
8
9
10
// 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>