I have developed an application page in Facebook which, of course lives in an iFrame. I want to be able to affect an element in the iFrame content upon page scroll (the main page/canvas page). Using jQuery the code within the content page would be:
parent.$(window).scroll(function(){
do something
});
In a normal situation where the iFrame and parent window are in the same domain this would work, but due to the security restrictions between different domains, this is not allowed. I've search the web extensively and have not found any solutions for this. Is there any cross domain fix, or any way of coding this to simply allow for a capture of the scrolling event of the main page?