how to append a div after a div in jquery code example
Example 1: jquery append
$("p").append(" <b>Appended text</b>.");
Example 2: add html after div jquery
$( ".inner" ).after( "<p>Test</p>" );
$("p").append(" <b>Appended text</b>.");
$( ".inner" ).after( "<p>Test</p>" );