I'm using JSON to receive content from a Wordpress website and display it on my mobile app. The JSON response I'm receiving has some inline styles within it that I don't need. I do however like to keep the actual html structure. Is this something that I can do with Javascript/jQuery?
For example, I like this:
<span style="color: red;">some text</span>
<p style="text-align: right;">Other stuff</p>
Turn to this:
<span>some text</span>
<p>other stuff</p>