I have problem in a script that was working until 3 or 4 days ago.
I'm using this (simplified version) code to send an app request to a user and it was working until few days ago, now it seems that something in facebook has changed and the window (wich is opened in iframe automatically) loads forever in Firefox and Internet Explorer. It continues to work normaly.
I Know that I can force the parameter display: 'popup', but sending the request after some other javascript lines it means that firefox blocks the popup opening and so it is useless for me.
function Test()
{
FB.ui({method: 'apprequests', message: 'My Great Request' }, CallbackFunction);
}
function CallbackFunction(response)
{
alert(JSON.stringify(response));
}
The page has no style and it's clean, here the full code: http://pastebin.com/QqbRceJ2
This is what it happens: http://i59.tinypic.com/10hq6w5.png
Any help is apreciated, I'm stuck on this since monday...
FB.ui
forapprequests
. On FF, the callback function never gets entered. – Candelabra