> The problem that I'm having is that the alert() box simply returns the
> message "Data Saved:" without the corresponding text retrieved from the
> script.

The problem is that you're looking for a MyRoot element within the
root element - which is MyRoot, which won't work. You have two
options:

1) $(msg).text()
2) Put another element inside MyRoot named something else, like MyText:
$("MyText",msg).text();

--John

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to