I am attempting to develop my own "ajax" simulated file upload using iframes and I have a question concerning it....
what's the best way to be able to communitcate load and response status between the parent document and the iframe and the iframes content?
iframe events capture server reponse
Moderator: General Moderators
Re: iframe events capture server reponse
Did you want to show the progress of a document you are loading inside an iframe?
- kendall
- Forum Regular
- Posts: 852
- Joined: Tue Jul 30, 2002 10:21 am
- Location: Trinidad, West Indies
- Contact:
Re: iframe events capture server reponse
Naaahhh...i just need to know when the iframe is loaded....im researching this...and i am getting some conflicting reports....does the iframe have an "onload" or "onreadystate" handler?ghurtado wrote:Did you want to show the progress of a document you are loading inside an iframe?
Re: iframe events capture server reponse
Well, since the iframe is a separate and independent HTML document, couldn't you use it's own onLoad event?
- kendall
- Forum Regular
- Posts: 852
- Joined: Tue Jul 30, 2002 10:21 am
- Location: Trinidad, West Indies
- Contact:
Re: iframe events capture server reponse
well it isnt per say...well i didnt want it to be...I'm trying to make a object that would handle the communication...this object may be dynamic and I didnt want to have to "hardcode" a reference to the loading html in the iframe as the html document would HAVE to know about the object to submit the response.ghurtado wrote:Well, since the iframe is a separate and independent HTML document, couldn't you use it's own onLoad event?