how to change html of div in jquery code example
Example 1: jquery replace html
$(element).html("Hello World");
Example 2: inner html jquery
$('#selector').text('Your text here');
Example 3: change html using jquery
$("#regTitle").html("Hello World");
Example 4: change html using jquery
//Takes input from entire page and uses it to change the HTML of h1
$(document).keypress(function(event){
$("h1").text(event.key);
});