jquery append after same div class code example
Example 1: add html after div jquery
$( ".inner" ).after( "<p>Test</p>" );
Example 2: append after element jquery
$("p").after(" <b>You can write your Text Here </b>.");
$( ".inner" ).after( "<p>Test</p>" );
$("p").after(" <b>You can write your Text Here </b>.");