jquery change element html code example

Example 1: jquery replace innerhtml

$("#myID").html("<div>New inner html</div>"); //replace element innerHTML in jQuery

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

//Takes input from entire page and uses it to change the HTML of h1
$(document).keypress(function(event){
  $("h1").text(event.key);
});