jquery append html to parent element code example
Example 1: append before parent jquery
$('ElementBeforeYouWantToInsert').prepend('<div>the element you want to insert</div>');
Example 2: jquery append element to body
$( ".inner" ).append( "<p>Test</p>" );