jquery appendto code example
Example 1: jquery append
$("p").append(" <b>Appended text</b>.");
Example 2: jquery append element to body
$( ".inner" ).append( "<p>Test</p>" );
Example 3: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");
Example 4: append div to another div jquery
<h2>Greetings</h2>
<div class="container">
<div class="inner">Hello</div>
<div class="inner">Goodbye</div>
</div>