add content jquery code example
Example 1: create an element jquery
$('<div>hello</div>').appendTo('#parent');
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");
$('<div>hello</div>').appendTo('#parent');
$("p").append(" <b>You can write your Text Here </b>.");