I got a question regarding checking if objects are visible within the iframe. Is that even possible? So the situation would be I check from outside the IFRAME if an object is visible within the Iframe.
This is not the same situation as the solution [here] (Determine if an element in an iframe is visible on the screen) due to the fact that I can not modify the IFRAME, therefore I could not use their solution
HTML Code
<iframe src="http://www.w3schools.com">
<p>Your browser does not support iframes.</p>
</iframe>
JS CODE
var check = $('.w3-container top').is(":visible");
alert(check);
The alert will always give the value "false".
JSFIDDLE (watch it in Firefox otherwise the iframe does not work)