I am struck in renaming a Node in XML using Javascrip/Jquery.
I tried using renameNode.. But it's not supported in none of the standard browsers i.e., Chrome, Mozilla etc
The requirement is as follows:
I have the following tree structure:
<attribute>
<basic_attribute>Some text</basic_Attribute>
</attribute>
Want it to rename as :
<attribute>
<symbolic_name>Some text</symbolic_name>
</attribute>
A small hint would work fine for me.