Answers for "html replace an 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
1

change html element

element.innerHTML =  "<p>read this</p>"	Change the inner HTML of an element
element.style.color = "blue";			Change the style of an HTML element
element.setAttribute(important, "true")	Change the attribute value of an HTML element
element.important = "true"				Change the attribute value of an HTML element
Posted by: Guest on November-19-2020

Code answers related to "html replace an element"

Browse Popular Code Answers by Language