this is my code
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({
appId: 'XXX',
status: true,
cookie: false,
xfbml: true
});
};
(function () {
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
and the Login button :
<div onclick="checkFacebookLogin();">Login with Facebook</div>
<script type="text/javascript">
function checkFacebookLogin() {
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
alert("connected");
} else {
alert("not connected");
}
});
}
This works perfectly in all browsers but Firefox. Does anyone know if there is an actual bug in facebook?
I also tried the onlogin method :
<div class="fb-login-button" onlogin="alert('here');" size="large">Login</div>
But again, this event is executed in all browsers but Firefox. I do not have cookies problem.
Thank you