Is there a way to check, FROM WITHIN an iframe, whether the page in the iframe is in the 3rd party parent's browser viewport?
For instance, in this example, the answer is no, because the content in the iframe is positioned out of the viewport.
<body>
<div style="position: fixed; left: -1000px;">
<iframe id="iframeID" width="200" height="200" src="http://domainNotSameAsParent.com"></iframe>
</div>
</body>