I am using facebook JS SDK to let users login to a website. In IE8, when a user clicks the login button, the facebook authentication dialog appears. But when he clicks "Cancel" in the dialog, a new window tab (not window) up which goes to
http://static.ak.facebook.com/connect/xd_arbiter.php?version=9&error_reason=user_denied&error=access_denied&error_description=The+user+denied+your+request.#
I have the following init code
window.fbAsyncInit = function() {
FB.init({
appId: 'XXX',
//status: true, // check login status
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
return false;
});
FB.Event.subscribe('auth.logout', function(response) {
return false;
});
};
And am using the following code in the click handler of my button
FB.login(function(response){
// Post Some Data to Server here
$.ajax(XXX)
return false;
}, {'scope':'email, publish_actions, user_birthday'});
I have used return false; to prevent page refresh after facebook login. This is an ajax application, so i cant reload the page.
I think the cancel window opens in all browsers, just that window.open is not disabled in IE 8.
Is there anyway to disabled the Window Opening in IE?