Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
I think this is the offending line:
If your query returns multiple records and you want to concatenate them into fid=59 try this:
_fid_59.value += '$("peritem", this).text();' // not sure what this line is doingTo confirm you can stuff a value in fid=59 replace with this:
_fid_59.value = "foo";If your query is guaranteed to return a single record:
_fid_59.value = $("peritem", xml).text();
If your query returns multiple records and you want to concatenate them into fid=59 try this:
$("peritem", xml).each(function() {
_fid_59.value += $("peritem", this).text();
})