JSFiddle - React, Tailwind, and code Playground

by NicosKaralis

HTML

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>

<h1>Button Count</h1>
<fb:like layout="button_count" font="Verdana" href="http://fbrell.com"></fb:like>

<iframe src="http://fbrell.com/xfbml/fb:like"></iframe>

JavaScript

// this will fire when any of the like widgets are "liked" by the user
FB.Event.subscribe('edge.create', function(href, widget) {
    // Log.info('You liked ' + href, widget);
    alert('You liked ' + href, widget);
});

FB.init({
    appId: '209340262442088',
    cookie: true,
    status: true,
    xfbml: true
});