I've done my homework and done what was ask to get the height of my page to set itself in my iFrame.
it works in Firefox (7+ at least), IE9 not working in Chrome, Safari, IE8/7 and Opera... http://www.facebook.com/pages/Brunet/190517411026916?sk=app_136821946424212
the code is this:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '136821946424212', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // enable OAuth 2.0
xfbml : true // parse XFBML
});
// Additional initialization code here
FB.Canvas.setSize({width: 520, height: 1625});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
all the docs and help out there point to this code working... am I missing somthing???
alertright after theFB.Canvas.setSizecall to make sure it is actually being executed; 2) delete the entireFB.initcall (not needed just for resizing); and 3) temporarily eliminate all CSS on the page (something with fixed height could be throwing things off, and having scrollbars can help see the height of the iframe itself which might actually be changing). – Floyd Wilburn Nov 10 '11 at 20:15