set html in jquery code example
Example 1: inner html jquery
$('#selector').text('Your text here');
Example 2: jquery set html of element
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
$('#selector').text('Your text here');
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});