Sunday, 8 January 2012

AJAX - Server Response


Server Response

To get the response from a server, use the responseText or responseXML property of the XMLHttpRequest object.
PropertyDescription
responseTextget the response data as a string
responseXMLget the response data as XML data


The responseText Property

If the response from the server is not XML, use the responseText property.
The responseText property returns the response as a string, and you can use it accordingly:

The responseXML Property

If the response from the server is XML, and you want to parse it as an XML object, use the responseXML property:

No comments:

Post a Comment