html-to-element
v1.0.0
Published
Converts HTML from string to js dom element.
Downloads
42
Maintainers
Readme
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);