New user and first question.. I parse an XML string using by nested each()s. I find the node I am looking for and change the property's value, however the original xml string remains unchanged.
XML and JQuery below. Look for the alerts in the code to see where the updating happens. Anyway after all the eachs have played out the original xml string is as it was? What am I doing wrong?
Thanks
The XML:
<Test TestID="712" UserID="1231230192831039812">
<Question id="713">
<AnswerSet id="718" type="5">
<AnswerSetOption id="740" IsChecked="Foo" />
<AnswerSetOption id="741" IsChecked="Foo" />
<AnswerSetOption id="742" IsChecked="Foo" />
</AnswerSet>
<AnswerSet id="719" type="5">
<AnswerSetOption id="740" IsChecked="Foo" />
<AnswerSetOption id="741" IsChecked="Foo" />
<AnswerSetOption id="742" IsChecked="Foo" />
</AnswerSet>
<AnswerSet id="720" type="5">
<AnswerSetOption id="740" IsChecked="Foo" />
<AnswerSetOption id="741" IsChecked="Foo" />
<AnswerSetOption id="742" IsChecked="Foo" />
</AnswerSet>
</Question>
</Test>
The Script:
function TrackResponse(QuestionID, AnswerSetID, AnswerSetOptionID, InputType) {
var xml;
xml = $('#_uiCheckingAnswersHidden').val();
$(xml).find('Question').each(function () {
var xmlQuestionID = $(this).attr('id');
$(this).find('AnswerSet').each(function () {
var xmlAnswerSetID = $(this).attr('id');
$(this).find('AnswerSetOption').each(function () {
var xmlAnswerSetOptionID = $(this).attr('ID');
var checkedValue = $(this).attr('IsChecked');
if (InputType == 'radio') {
if (QuestionID == xmlQuestionID && AnswerSetID == xmlAnswerSetID && AnswerSetOptionID == xmlAnswerSetOptionID) {
alert('Found it');
var oldValue;
oldValue = $(this).attr('IsChecked');
alert('Old value: ' + oldValue)
$(this).attr('IsChecked', 'Bar');
var newValue;
newValue = $(this).attr('IsChecked');
alert('New value: ' + newValue)
}
else {
$(this).attr('IsChecked', 'pp');
}
}
//Checkbox -- if not found updated Checked Attribute to ''
if (InputType == 'check') {
var checked = $(this).attr('IsChecked');
if (QuestionID == xmlQuestionID && AnswerSetID == xmlAnswerSetID && AnswerSetOptionID == xmlAnswerSetOptionID) {
if (checked == 'true') {
$(this).attr('IsChecked', 'dd');
}
else {
$(this).attr('IsChecked', '');
}
}
}
});
});
});
alert(xml);
}
$(xml)you're creating a new jQuery object containing the nodes defined in thexmlstring; the two now have absolutely no connection to one another. If you want to get a new XML string to represent the changed state you'll need to obtain it from that object. – Anthony Grist Dec 14 '12 at 11:13$(xml), since that will reflect the later changes (assuming you use that variable in place of any$(xml)calls in your current code). There are a couple of questions about obtaining an XML string from a jQuery object here on SO, so do a search for one of those. – Anthony Grist Dec 14 '12 at 11:26var xmlObject = $(xml);. ThenxmlObjectwill reference the jQuery object that's returned by calling$(xml). – Anthony Grist Dec 14 '12 at 11:40