I want to add an HTML to a div but render it as text, not as actual HTML. I currently am doing this:
HTML
<div id="feed"></div>
Javascript/JQuery
$("#feed").append("<b>Hello World!</b>");
And it renders the following:
Hello World
But I want regular text to be rendered, like this
<b>Hello World!</b>