I have an HTML string as follows (defined in javascript):
<body>
<div id="stuff">
bla bla bla
</div>
<div id="content">
Actual content is here.
</div>
</body>
Above html is my string. I would like to append the div with the id "content" to my actual html file.
How can I read (or parse?) and append a html string like this via jquery?