I have this content from one input value:

var xml_url  = $("input").val();
alert(xml_url);

Output:

<trans>
    <result>
        <item1>1</item1>
        <item2>content</item2>
        <item3>NA</item3>
        <item4>0</item1>
    </result>
</trans>

The structure is as a XML file. I want to get this data.

I have this code:

<script language="javascript">
    $(document).ready(function(){
        var xml_url  = $("input").val();
          $(xml_url).find("result").each(function()  
          {         
            alert($(this).find("item3').").text());
          });
    });
</script>

It works fine in firefox, but not in IE7/8.

Any suggestions? Thanks a lot.

link|improve this question

74% accept rate
1  
What does the xml variable hold, and find("item3').") - are you sure this works on Firefox, and you didn't meant find("item3")? – Anurag Jun 30 '10 at 18:16
1  
"$(xml).find" Is that supposed to be xml_url? – kekekela Jun 30 '10 at 18:18
it is a typing mistake , nothing to to with that , – AlexC Jun 30 '10 at 18:39
in firefox it works ! – AlexC Jun 30 '10 at 18:40
feedback

1 Answer

Never rely on jQuery for parsing XML.

See

Use a proper parser to do the job, and then use jQuery to find the desired nodes. The example you gave works on Firefox, but not on Chrome, Safari or IE. The function below will construct a XML document from a string.

function parseXML(text) {
    var doc;

    if(window.DOMParser) {
        var parser = new DOMParser();
        doc = parser.parseFromString(text, "text/xml");
    }
    else if(window.ActiveXObject) {
        doc = new ActiveXObject("Microsoft.XMLDOM");
        doc.async = "false";
        doc.loadXML(text);
    }
    else {
        throw new Error("Cannot parse XML");
    }

    return doc;
}

Use as:

// Parse and construct a Document object
var xml = parseXML(xml_url);

// Use jQuery on the object now
$(xml).find("result").each(function()  
{
    alert($(this).find("item3").text());
});
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.