Hello folks,
I am trying to use jquery for xml parsing.
Snippet of my XML is as follows
<ex>Some text here <it>some italic text</it> some more text <it>text more </it> text text <it>some more italic</it>go go</ex>
I want to get the text within and tags and display my content as follows
Some text here <i>some italic text</i> some more text <i>text more</i> text text <i> some more italic</i> go go
Basically, get the text from as well as and format it as shown above
Any help is appreciated
Thanks