[jQuery] $.getScript - passing the response.

[jQuery] $.getScript - passing the response.


I'm using $.getScript to get XML from a remote server. How do I pass
the response text from that request to another function? Here's the
pseudocode:
$.getScript(getURL, function(){
processXML();
});
How do I pass the response text to processXML?
Thanks!