how to add an elemnt code example
Example 1: jquery create html element
var newDiv = $('<div>My new div</div>'); //create Div Element w/ jquery
$( "#someOtherElement" ).append(newDiv); //append new div somewhere
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");