jquery on click append div from different page code example
Example 1: jquery append element to body
$( ".inner" ).append( "<p>Test</p>" );
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>