Now I'm implementing Facebook credit function with JavaScript SDK. I have been using "FB.ui({method: 'pay', ....}, callback)" and now it works fine.
When I use this FB.ui function with method: 'pay' on mobile site like iPhone or Android, it try to open a another popup window for payment dialog.
But as everybody knows, iPhone or Android browser blocks popup window in default, so we must turn off popup block in settings if we want to work this FB.ui pay method.
Are there any ways not to open another popup window for the payment dialog?
Now I'm implementing Facebook credit function with JavaScript SDK. I have been using "FB.ui({method: 'pay', ....}, callback)" and now it works fine.
When I use this FB.ui function with method: 'pay' on mobile site like iPhone or Android, it try to open a another popup window for payment dialog.
But as everybody knows, iPhone or Android browser blocks popup window in default, so we must turn off popup block in settings if we want to work this FB.ui pay method.
Are there any ways not to open another popup window for the payment dialog?
Share Improve this question asked Oct 28, 2011 at 12:06 小林 学小林 学 111 silver badge3 bronze badges1 Answer
Reset to default 9the solution is put the code that call FB.ui in the onclick attribute of the button. like the facebook web app hackbook does:
http://www.facebookmobileweb./hackbook/ (open this in a popup window blocked browser, and click the "Prompt to Pay" in the Credits page)
here is the html code of the "Prompt to Pay" button:
<div id="publish_button" class="button" onclick="sendPay()">Prompt to Pay</div>
and here is the reason why browser doesnt block this kind of popup windows:
Prevent pop-ups from being blocked