You can access the iframe window and use the "load" event on the iframe
window

var iframeElt = document.getElementById("theFrame");
var iwindow = iframeElt.contentWindow;

To access the document:
var iDocument = iframeElt.contentDocument;

Fred

On 7/6/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> I have an iframe on my site which a form posts to.
>
> But how do I activate an event when the iframe is done loading its
> content?
>
>

Reply via email to