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