jqeury append html code example
Example 1: append to jquery
$("<span>Hello World!</span>").appendTo("p");
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");
$("<span>Hello World!</span>").appendTo("p");
$("p").append(" <b>You can write your Text Here </b>.");