append html jquewry code example
Example 1: jquery add div element
$('#someParent').append('<div>I am new here</div>');
Example 2: append div to another div jquery
<h2>Greetings</h2>
<div class="container">
<div class="inner">Hello</div>
<div class="inner">Goodbye</div>
</div>