1.0.0 • Published 7 years ago

html-to-element v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

HTML-to-Element

What does HTML-to-Element?

In one short sentence: "HTML-to-Element converts HTML from a string to a js dom element."

Install

npm install html-to-element -S

Import

import htmlToElement from 'html-to-element';

Examples:

  import htmlToElement from 'html-to-element';
  
  let element = htmlToElement(`<div id="example">
      <p>Example</p>
      <div style="width:200px">Click me!</div>
  </div>`);
  
  document.body.appendChild(element);