PHP Classes

onload iframe event

Recommend this page to a friend!

      From Browser - Youtube Upload  >  All threads  >  onload iframe event  >  (Un) Subscribe thread alerts  
Subject:onload iframe event
Summary:yt_done() not called in IE
Messages:1
Author:Jordan
Date:2010-06-29 15:18:25
 

  1. onload iframe event   Reply   Report abuse  
Picture of Jordan Jordan - 2010-06-29 15:18:25
the below code:

function yt_do_upload()
{
//were go confirm the status? in nexturl
$('form').action = $('url').value + "?nexturl=http://cesar.la/";
$('form').submit();
$('yt_frame').onload = yt_done;
$('loading').innerHTML = "Uploading to youtube!...";
setTimeout("ashow('loading');",3000);
}

calls this function:

function yt_done()
{
alert("Upload done!");
ahide("loading");
}

but in IE nothing happens... is there anyway to fix this?