Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.