I\'m looking for a way to use jQuery/js to show a \'Loading...\' message while an iframe is loading, when the iframe finished to load completely, the \'Loading...\' text sho
Please wait
jquery:
$("iframe").load(function() { $("#loading").toggle()});