change html content jquery 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 set html of element
$("button").click(function(){
$("p").html("Hello <b>world</b>!");
});
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);
});