I wanted to know is it possible to check when the content in an iframe is loaded.
I have a hidden iframe and I don't want to show it until the webpage/website inside the iframe has loaded.
i tried the following, not really worked for me:
$('iframe').load(function() {
;
});
is that possible?