Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to parse an XML document that has an attribute called "link" which provides a URL string. The problem is, whenever the URL string includes an & symbol - for example:

http://www.site.com/segment/page.html#/?view=viewName&model=4

The xml parsing breaks and won't parse anything beyond this node. Here's my code:

parseVehicles: function(xmlNode) {  
    $j(xmlNode).children().each(function() {
        console.log(supertree.vehicleCount);
        supertree.vehicleCount++;
    });
},

How do I keep this from breaking?

share|improve this question

1 Answer

up vote 2 down vote accepted

If your XML looks like this:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&model=4" />

Then that's simply invalid XML. The & should be escaped:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&amp;model=4" />

Fix whatever's creating the invalid XML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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