HI all,
I use jQuery to parse my xml responses.
I have this xml :
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<client_id>185</client_id>
</response>
And i want to get "client_id" value.
|
HI all, I have this xml :
And i want to get "client_id" value. |
|||
|
|
|
First, make a request for the XML with $.get or however you want. Then:
|
||||
|
|
|
To fix the expected response data type to XML right in your request, set the It is supported on the
So you could do this:
Note that as of jQuery 1.5 you can use a nicer version of the above Ajax request:
|
|||||
|
|
just to complement, i you use $.get:
function doSomethingWithData(data) {
here tpicall used request.responseXML is the data in this case, and you have to encapsulate it in $(data) in order to work (this make me break the head about 3 hours ;S)
|
|||
|
|
|
Use something like this:
|
|||
|
|