I have a weird XML file that I'm trying to parse.

<Data>
<Row>
<Field name = "whatever" pos ="1">STUFF</Field>
<Field name = "whatever2" pos ="2">MORE STUFF</Field>
<Field name = "whatever3" pos ="3">EVEN MORE STUFF</Field>
</Row>
<Row>
<Field name = "whatever" pos ="1">Different STUFF</Field>
<Field name = "whatever2" pos ="2">MORE Different STUFF</Field>
<Field name = "whatever3" pos ="3">EVEN MORE Different STUFF</Field>
</Row>
</Data>

I tried getting the data by using "Row" which works but how do I call the individual field names? In firebug they all look like "Field". I tried:

myvalue : $("whatever", this).text()

But that doesn't grab it.

Thanks


Code from a comment below:

function callAjax(url) {
    $.ajax({
        url: url,
        dataType: "xml",
        success: function (xmlResponse) {
            $.merge(data1, $("ROW", xmlResponse).map(returnResults).get());
        } // end of success }); }

function returnResults() {
    formatedURL = $('Field[name="EL_VALUES_FIELD2"]', this).text();
    return {
        value: $('Field[name="EL_VALUES_FIELD1"]', this).text(),
        label: $('Field[name="EL_VALUES_FIELD1"]', this).text() + " " + $("EL_VALUES_FIELD4", this).text(),
        title: $('Field[name="EL_VALUES_FIELD1"]', this).text(),
        url: formatedURL,
        description: $('Field[name="EL_VALUES_FIELD3"]', this).text(),
        keywords: $('Field[name="EL_VALUES_FIELD4"]', this).text()
    };
}
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You can do this with the attribute equals selector [attrname="value"]. For instance:

$('Row', this).eq(0).find('Field[name="whatever2"]').text()

This finds the Field element whose name is whatever2 within the first (index 0) Row element.

link|improve this answer
Will that really work on XML though? – Niklas Jun 7 '11 at 17:24
@Niklas Yes. jsFiddle – lonesomeday Jun 7 '11 at 17:27
Is there a way to do this without that index? I'm compiling all of this into objects for an autocomplete search bar. I'm working with this: – Specked Jun 7 '11 at 17:47
@Specked How do you know which Row element you want to get? – lonesomeday Jun 7 '11 at 17:48
How can I apply that to my need? pastebin.com/CrGgeW1K I'm using this as a datasource for autocomplete so I need it to iterate through all of the Row elements – Specked Jun 7 '11 at 17:56
show 3 more comments
feedback

try $(Field [name=whatever])

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.