When using jQuery and fancybox for showing another page inside an iframe I want to show the loading animation while the page inside the iframe is loading. This is possible when using ajax to load content but I want the same thing when using iframe. Is it possible from the api to also get the loading animation while the content in the iframe is loading?
This is the code for showing the iframe in the fancybox:
var $fancybox = $("#openPopup").fancybox({
'type': 'iframe',
'href': "Test.php"
});