私のウェブサイトでFacebookの友達を招待するオプションがあり、以下のコードを使用します。しかし、問題はそれがポップアップで開き、chromeとfirefoxがポップアップをブロックすることです。新しいタブまたはウィンドウに表示するにはどうすればよいですか?または、ポップアップがブロックされないようにする方法はありますか?
<html>
<head>
<title>my website</title>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js">
</script>
<script>
FB.init({
appId:'xxxxxxxxxxxxxxx', cookie:true,
status:true, xfbml:true
});
FB.ui({ method: 'apprequests',
message: 'Take a look at this new website.'});
</script>
</body>
</html>