[jQuery] Attach event to IFrame load event
Hi,
I'm trying to bind to iframe load event, using $("iframe").load
(function(){ }.
On Firefox, it works as expected, but on IE it only works when I'm
navigating inside the iframe but not for the initial content.
Is this the right way to get this event or am I missing something?
JQuery : 1.3.2
HTML
<body>
<iframe src ="frame1.html" width="100%" height="300"></iframe>
<iframe src ="frame2.html" width="100%" height="300"></iframe>
</body>
Thanks in advance,
Nicolas