Hi Alex,
Tried on chrome and it seems to load tags when FB.XFBML.parse(); is used. but intermittent of firefox. But my main issue is having a checkin button. i have looked at the fb.api code:
/* make the API call */
FB.api(
"/me/feed",
"POST",
{
"message": "This is a test message"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
the problem i have is that the code doesn't work if called in a normal javascript function. All the examples i've seen have these kind of funtions are within an fbAsyncInit function. But i don't want the post load when the page loads but via an onclick. No error is produced , the post dialogue is not produced and nothing happens.
Any ideas?