Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

is it possible to check Facebook canvas method FB.Canvas.getPageInfo availability? My methods code:

FB.Canvas.getPageInfo(      
        function(info) {
            alert('Width: ' + info.clientWidth + ' Height: ' + info.clientHeight + 
            ' Scroll top: ' + info.scrollTop + ' Offset top:' + info.offsetTop);

        }
);

Because some browsers do not support it. For example I cant make it working in Opera browser, also with IE 8 and etc. I noticed if canvas page has scrollbars then its not working, else it works perfectly well. So is it possible to overcome this?

Your help would be appreciated.

share|improve this question
I think the method is generally “available”, but you might not get the expected response in some browsers. But to further help you out, it’d be helpful if you could describe the actual problem you are having/trying to solve. – CBroe Nov 9 '12 at 9:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.