How to replace HTML tag element with JavaScript

1 Answer

0 votes
<!DOCTYPE html>
<html>
  
<head></head>
  
<body>

<div id="div-id">
<p id="p-id">p-id tag</p>
</div>

<script>
 
var parent = document.getElementById("div-id");
var childp = document.getElementById("p-id");
var newp = document.createElement("p");
var nodetext = document.createTextNode("new p");
newp.appendChild(nodetext);
parent.replaceChild(newp, childp);

/*
run:
  
<p>new p</p> will replace: <p id="p-id">p-id tag</p>
  
*/

</script>

</body>
  
</html>

 



answered Jul 12, 2015 by avibootz

Related questions

2 answers 7,072 views
2 answers 353 views
1 answer 334 views
1 answer 256 views
2 answers 346 views
...