innerhtml jquery

HTML
$("#myID").html("<div>New inner html</div>"); //replace element innerHTML in jQuery$('#selector').text('Your text here');var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);$(element).html("Hello World");
Source

Also in HTML: