/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<div id="fb-root"></div> <script src="http://connect.facebook.net/en_US/all.js"></script> <script> FB.init({ appId : '<?php echo $app_id; ?>', status : true, // check login status cookie : true, // enable cookies to allow the server to access the session xfbml : true // parse XFBML }); window.fbAsyncInit = function() { FB.Canvas.setSize({ width: 520, height: 1100 }); } // Do things that will sometimes call sizeChangeCallback() function sizeChangeCallback() { FB.Canvas.setSize({ width: 520, height: 1100 }); } window.setTimeout(function() { if (window.fbAsyncInit) { fbAsyncInit(); }}, 0); </script>