iFrame trigger onload

HTML

<iframe id="myIframe" src="" style="width:400px;height:400px"></iframe>

JavaScript

$('#myIframe').load(function () {
    alert("loaded '"+$(this).attr('src')+"'");
});
/* 
$('#myIframe').attr('src','http://infxsolutions.com/') */