I receive an XML formatted as follows.
<rec>
<id> servicedescription </id>
<name> Description Value </name>
<type> textbox </type>
</rec>
But this won't work since my system doesn't accept the spaces present between the tags. I require something as follows
<rec>
<id>servicedescription</id>
<name>Description Value</name>
<type>textbox</type>
</rec>
Please help me out in Javascript. Thanks a lot
PS : Extremely sorry if this question has been asked before. I searched quite a lot but didn't get the info.