jQuery set html de elemento
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
Duco Defiant Dogfish
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
$('#selector').text('Your text here');
$( "div.demo-container" )
.html( "<p>All new content. <em>You bet!</em></p>" );