Martin
0
Q:

how to change .innerhtml back

document.getElementById("p1").innerHTML = "New text!";
11
<div id="d"> old content </div> 
 
<script> 
    // Element stored in a variable for easy access 
    var div = document.getElementById("div"); 
 
    // Save the original content of the div 
    var old = div.innerHTML; 
 
    // Change the content of the div 
    div.innerHTML = "new content"; 
 
    // Reset the original content of the div 
    div.innerHTML = old; 
</script> 
0

New to Communities?

Join the community