Facebook login popup doesn't work on ie6 and ie7, are there some way to make the login popup with javascript sdk works in ie6 or ie7. Simply doesn't work and doesn't show any error. I'm using flash and javascript facebook sdk to prompt the login.
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXXX',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'http://www.url.com/channel.html',
oauth : true
});
FB.Event.subscribe('auth.sessionChange', function(response) {
alert('The status of the session is: ' + response.status);
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
function setFB(){
FB.login(function(response) {
if (response.authResponse) {
FB.api('/me', function(response) {
});
} else { obtenerDatos(false, "nologin", ""); } }
}
console.logstatements in your code? – Björn Kaiser Dec 14 '11 at 19:34