jquery create html element 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: create an element jquery
$('<div>hello</div>').appendTo('#parent');
Example 3: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");