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.