En realidad el evento es
onreadystatechange (ooops)
para mejorar el tema, un ejmplo.
<script type="text/javascript">
function doframe(){
alert("OK, cargado");
}
function dostate(este){
alert("estado="+este.document.readyState);
}
</script>
</head>
<body>
<br>
<iframe id="miframe" src="d:\desarrollo\prueba2.html" onreadystatechange="dostate(this);" width="50%" height="200" onload="doframe();">
</body>
buneo, ahora si, saludos.