how to append html element in jquery code example
Example 1: jquery append
$("p").append(" Appended text.");
Example 2: jquery append html
$("p").append(" You can write your Text Here .");
$("p").append(" Appended text.");
$("p").append(" You can write your Text Here .");