I'm using this jQuery command:
$('.body-container').append(bodyPart.content).html();
to append HTML content into my body. If "bodyPart.content" is something like:
<strong>Bold</strong>
It works nicely, and show me on my browser:
Bold
But if it's:
<strong> Bold </strong>
it shows me on the browser:
<strong> Bold </strong>
What to do here to jQuery understand escaped HTML code?