I want to display the facebook request dialog as an iframe on my html page. Currently I have the following code:
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
window.fbAsyncInit = function() {
FB.init({appId: 'xyz',
status: true,
cookie: true,
xfbml: true,
oauth: true});
};
FB.ui({ method: 'apprequests',
display: 'iframe',
title: 'Invitation to join game',
data: '1234',
new_style_message: true,
message: 'invitation to join game'});
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root')
.appendChild(e);
}());
//]]>
</script>
Shouldn't display:'iframe' show that content as an iframe on page load? Or am I doing something wrong here?
I can get it to look like this (which I don't want): http://forumbilder.se/images/b1620121110025243.jpg
This is how I want it to look like: http://forumbilder.se/images/3f62012111130ff92.jpg