/ Published in: JavaScript
Muestra un cuadro de dialigo en una app de facebook
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script> //Dialog function show_dialog(){ FB.ui({ 'method': 'fbml.dialog', 'display': 'dialog', 'fbml': "<h1>this is some fbml markup</h1>", 'width': 575 }, function() { alert(true, 'callback was invoked'); }); } </script>