javascript set html string code example
Example 1: change innerhtml
document.getElementById("p1").innerHTML = "New text!";
Example 2: js make node with string
function htmlToElement(html) {
var template = document.createElement('template');
html = html.trim(); // Never return a text node of whitespace as the result
template.innerHTML = html;
return template.content.firstChild;
}