jquery appending text to html code example
Example 1: jquery append element to body
$( ".inner" ).append( "<p>Test</p>" );
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");
$( ".inner" ).append( "<p>Test</p>" );
$("p").append(" <b>You can write your Text Here </b>.");