We are currently in the preparating for upgrading CRM 2011 with UR 12, and there are a few pieces of javascript that might break after the upgrade.
The XML related functions are some of the ones highlighted as potential code. So I would like to replace these functions with JQuery equivalent, but do not have much idea about jQuery
Assuming that 'result' is a XML response from xmlhttprequest, how do we convert the following code to use jquery
result.selectNodes("//EntityMetadata/DisplayName/LocLabels/LocLabel/Label");
will something like
$(result).find(("//EntityMetadata/DisplayName/LocLabels/LocLabel/Label");