change div html jquery code example
Example 1: jquery replace innerhtml
$("#myID").html("<div>New inner html</div>");
Example 2: jquery replace html
$(element).html("Hello World");
Example 3: change html using jquery
$("#regTitle").html("Hello World");
Example 4: innerhtml jquery
var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);
Example 5: change html using jquery
$(document).keypress(function(event){
$("h1").text(event.key);
});