Posts

Showing posts from April, 2011

Facebook

Been having problem with Facebook Apps auto-resize and tried to remove annoying vertical scrollbar. After Googled for a while, found the following snippet. Its a simple hack that works perfectly! <div id="fb-root"></div> <script src="http://connect.facebook.net/en_US/all.js"></script> <script> FB.init({ appId : 'YOUR-APP-ID-HERE', status : true, // check login status cookie : true, // enable cookies to allow the server to access the session xfbml : true // parse XFBML }); </script> <script type="text/javascript"> window.fbAsyncInit = function() { FB.Canvas.setSize(); } // Do things that will sometimes call sizeChangeCallback() function sizeChangeCallback() { FB.Canvas.setSize(); } </script>