Tried not working this is an compatability issue Ie9 vs IE11:
<iframe name="testwindowframe" id="testwindowframe" Onload="readyStateChange()" width="100%" height="90%"></iframe>
Actual JSP: Please find the details :WHERE IFRAME AND SCRIPTS
used this is an compatibility issue in IE11. I placed a breakpoint in the readyStateChange()
but its not triggering.
<script language="javascript">
function readyStateChange() {
console.log('REACHED!');
}
</script>
<iframe name="testwindowframe" id="testwindowframe" onreadystatechange="readyStateChange()" width="100%" height="90%"></iframe>