/html-dom /Basic
GitHub 4932★

Get or set the HTML of an element

Get the HTML

// Get the HTML
const html = ele.innerHTML;

Set the HTML

// Set the HTML
ele.innerHTML = '<h1>Hello World!</h1>';

See also

Follow me on and to get more useful contents.