Answers for "replace html element"

1

javascript replace element

// select the element that will be replaced
	var el = document.querySelector('div');
	
	// <a href="/javascript/manipulation/creating-a-dom-element-51/">create a new element</a> that will take the place of "el"
	var newEl = document.createElement('p');
	newEl.innerHTML = '<b>Hello World!</b>';
	
	// replace el with newEL
	el.parentNode.replaceChild(newEl, el);
Posted by: Guest on March-28-2021
0

Change the HTML of an element

const content=document.querySelector('.content');
content.innerHTML='<h2 style="background:orange; color:blue; font-family:monospace">This is the new Header</h2>';
Posted by: Guest on December-11-2021

Code answers related to "replace html element"

Browse Popular Code Answers by Language