I have a loop on my facebook when using ie and firefox (Facebook Javascript SDK window location reload not working on Firefox)
because of the:
FB.Event.suscribe('auth.login',function(response){
location.reload(true);
});
I tryied with:
FB.Event.suscribe('auth.login',function(response){
window.setTimeout('location.reload(true)',0);
});
But it keeps doing the loop.
Additional information: I’m only using html,javascript and jquery not using php, asp, aspx, ruby, nothing else than that.
Change to: