I have page content that changes dynamically when attributes are selected in a pulldown (not radiobutton) with the DOM change happening via a javascript.
onchange of the selects, the page content updates appropriately.
Moments later the content reverts to it's starting state, I believe because uc_aac is also running code onchange of the same selects.
How can I exclude the updated page content, referenced by particular id's, from the uc_aac "sweep through" at
// Replace HTML elements with new values.
var node = $('#node-' + data.nid);
for (var i in data.replacements) {
var replacement = $(data.replacements[i]);
$(node).find('.' + i).after(replacement).remove();
}If, in fact, this is what is causing my changes to get wiped back off the page?
Thanks in advance for your thoughts,
Pat
