how to add html at the end of an element using jquery 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
$("p").append(" <b>Appended text</b>.");