jquery set inner html code example
Example 1: jquery replace innerhtml
$("#myID").html("<div>New inner html</div>");
Example 2: inner html jquery
$('#selector').text('Your text here');
Example 3: jquery set html of element
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
Example 4: change inner html in jquery
$("#element").html("Hello World");
Example 5: innerhtml jquery
var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);