jquery add html to the text code example
Example 1: jquery add div element
$('#someParent').append('<div>I am new here</div>');
Example 2: how to put html inside jquery text
$('div.demo-container').html('<p>All new content. <em>You bet!</em></p>');