Skip to content

Instantly share code, notes, and snippets.

@johankj
Created January 25, 2013 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johankj/4636481 to your computer and use it in GitHub Desktop.
Save johankj/4636481 to your computer and use it in GitHub Desktop.
A bookmarklet which adds a Facebook "Like"-button as well as a "Recommend"-button. Inspired by http://likeomatic.heroku.com
(function () {
try {
var url = encodeURIComponent(location.href);
var ifr = document.createElement('iframe');
ifr.style.position = 'absolute';
ifr.style.top = 10 + 'px';
ifr.style.left = 10 + 'px';
ifr.style.width = 450 + 'px';
ifr.style.height = 70 + 'px';
ifr.style.border = 'none';
ifr.src = 'http://www.facebook.com/plugins/like.php?href=' + url + '&show_faces=true&width=450&action=like&colorscheme=light';
ifr.scrolling = 'no';
ifr.frameborder = 0;
document.getElementsByTagName('body')[0].appendChild(ifr);
var ifr = document.createElement('iframe');
ifr.style.position = 'absolute';
ifr.style.top = 80 + 'px';
ifr.style.left = 10 + 'px';
ifr.style.width = 450 + 'px';
ifr.style.height = 70 + 'px';
ifr.style.border = 'none';
ifr.src = 'http://www.facebook.com/plugins/like.php?href=' + url + '&show_faces=true&width=450&action=recommend&colorscheme=light';
ifr.scrolling = 'no';
ifr.frameborder = 0;
document.getElementsByTagName('body')[0].appendChild(ifr);
} catch (e) {}
})();
(function(){try{var url=encodeURIComponent(location.href);var ifr=document.createElement("iframe");ifr.style.position="absolute";ifr.style.top=10+"px";ifr.style.left=10+"px";ifr.style.width=450+"px";ifr.style.height=70+"px";ifr.style.border="none";ifr.src="http://www.facebook.com/plugins/like.php?href="+url+"&show_faces=true&width=450&action=like&colorscheme=light";ifr.scrolling="no";ifr.frameborder=0;document.getElementsByTagName("body")[0].appendChild(ifr);var ifr=document.createElement("iframe");ifr.style.position="absolute";ifr.style.top=80+"px";ifr.style.left=10+"px";ifr.style.width=450+"px";ifr.style.height=70+"px";ifr.style.border="none";ifr.src="http://www.facebook.com/plugins/like.php?href="+url+"&show_faces=true&width=450&action=recommend&colorscheme=light";ifr.scrolling="no";ifr.frameborder=0;document.getElementsByTagName("body")[0].appendChild(ifr)}catch(e){}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment