jquery create and append 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: jquery add div element
$('#someParent').append('<div>I am new here</div>');
Example 3: jquery append
$("p").append(" <b>Appended text</b>.");
Example 4: create an element jquery
$('<div>hello</div>').appendTo('#parent');
Example 5: jquery append div
$('#box').append(
$('<div/>')
.attr("id", "newDiv1")
.addClass("newDiv purple bloated")
.append("<span/>")
.text("hello world")
);
Example 6: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");