Here is my solution, hope this works for you:
I just set this to css by default
#fb-root{display:none}
FB ( FB.ui), :
$('#fb-root').show();
FB.ui,
$('#fb-root').hide();
:
var inviteFriend = function (msg) {
$('#fb-root').show();
FB.ui({
method: 'apprequests',
message: msg
}, function (response) {
$('#fb-root').hide();
console.log('sendRequest response: ', response);
});
},
, .