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