Re: How to determine when loading an xml file is completed?
Jiri Znamenacek <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Roy wang wrote:
> Any suggestion?
I didn't use this stuff for a while so - have you read
http://www.mozilla.org/newlayout/xml/#load and
http://www.mozilla.org/xmlextras/ ? There are some examples there. Looks
like you should be able to attach listener as follows
xmlDoc.addEventListener("load", documentLoaded, false);
JZ