Skip to content

Files

Latest commit

8252032 · Jan 6, 2018

History

History
25 lines (21 loc) · 655 Bytes

createElement.md

File metadata and controls

25 lines (21 loc) · 655 Bytes

createElement

Creates an element from a string (without appending it to the document). If the given string contains multiple elements, only the first one will be returned.

Use document.createElement() to create a new element. Set its innerHTML to the string supplied as the argument. Use ParentNode.firstElementChild to return the element version of the string.

const createElement = str => {
  const el = document.createElement('div');
  el.innerHTML = str;
  return el.firstElementChild;
};
const el = createElement(
  `<div class="container">
    <p>Hello!</p>
  </div>`
);
console.log(el.className); // 'container'