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