1
I understand the use of this code snippet in Jquery below:
$(document).ready(function() {
alert("carregou");
})
However, the problem in question is that when I load something by iframe, this function is not run again, how do I detect when an iframe is loaded?
Initially, when entering the page, the iframe is not displayed, the function above meets, warning when the html page is loaded, but the person can choose between the options of the screen, and so will open an iframe in any option chosen, but it is not displayed the message "loaded" when iframe finishes loading.. Anyway, the point is:
how do I detect when an iframe is loaded?
Perfect, it worked right here, I just switched the ready for load, so that the page is actually expected to load all the features beyond the said rendering.
– Ale