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