Element Modification
Modify content
element.textContent = 'Hello 🌏';Modify properties
/* Toggle `disabled` state. */
button.disabled = !button.disabled;
link.src = `https://wishtack.io`;Modify the structure
Create a DOM element
const child = document.createElement('div');Append an element
parent.appendChild(child);Remove an element
CSSOM (CSS Object Model)
Last updated