Hello. I have an XML connector that I'm using a tigger event on. I was
wondering if anyone knows a way for me to check when this completes. I have
some other functions that need to run, but only after the data loads. Thanks.
RysChwith - 28 Feb 2005 15:55 GMT
Add an event listener for the 'result event.'
Rys
var res = function( ev ) {
//do stuff here
}
nameOfConnector.addEventListener( "result", res );