ページを気に入ったときに起動されるコードとともに [いいね] ボタンを実装しようとしましたが、機能させることができません。
ページが気に入ると、FIrebug は次のエラーを表示します。
Event.__inlineSubmit is not a function
そして、ページが私に好かれている以外は何も起こりません(つまり、アラート/リダイレクトなどはありません)。これまでのコード:
<div id="fb-root"></div>
<script type="text/javascript">
<!--
window.fbAsyncInit = function () {
FB.init({ appId: '---MYAPPID---', status: true, cookie: true, xfbml: true });
FB.Event.subscribe('edge.create', function (href, widget) {
// track the click on the "Like" button here
alert(href);
});
};
(function () {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());
//-->
</script>
<div class="fb-like" data-send="false" data-layout="box_count" data-width="60" data-show-faces="false"></div>