Facebook の関数 postLikeを以下の jquery コードに含めて、ボタンのクリックまたは送信で動作することは可能ですか?
function postLike(){FB.api("/me/og.likes","post",{object:"http://test.com/test"})}
$(".bookmark_form").live("submit",function(a){a.preventDefault();$.post("/",
$(this).serialize(),function(){$("#buddy").html(" ");
$.ajax({url:$("#buddy").attr("rel"),
dataType:"html",success:function(c){$("#buddy").html(c)}});return false})});
前もって感謝します!