Why is the load event not fired in IE for iFrames?
load
Please take a look at this example.
Work perfectly as expected in FF and Chrome, but IE fails
Add the prefix "iframe" in front of your id:
$('iframe#myFrame').load(function() { ... });
Alternativly try to use "ready" instead of "load":
$('#myFrame').ready(function() { alert("Loaded"); });
This should work.