Is there any way to wait until an iframe has fully loaded before removing a div?
I'm using the following:
$("#myButton").click(function(event){
$('#response').html("<img src='images/ajax-loader.gif' border=0> Please Wait - Loading!");
$("#myIFrame").attr('src', $('#url').val());
});
I'd like to remove the loading gif once the iFrame fully loads.
Any ideas?!
Thanks!!!