The following code returns UpperCase text of the tagName. I want the original case.
var xml = '<myElements type="AA" coID="A923"><myHouse>01</myHouse> <myCars>02</myCars><myWifeAndDog>03</myWifeAndDog></myElements>';
$(xml).children().each(function () {
var xmlnode = $(this);
...
I'm using the new $.parseXML() method with jQuery 1.5 to parse a string into a valid XML object. Once I convert the string to a jQuery XML object, I am ...