replace innerhtml of element code example
Example 1: change innerhtml
document.getElementById("p1").innerHTML = "New text!";
Example 2: jquery replace innerhtml
$("#myID").html("<div>New inner html</div>"); //replace element innerHTML in jQuery
Example 3: change element text innerhtml keeping the elements or tags inside
document.getElementById("tagname").firstChild.data = text;