jquery change element 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 in html
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
Example 4: change html using jquery
$("#regTitle").html("Hello World");
Example 5: change html using jquery
$(document).keypress(function(event){
$("h1").text(event.key);
});