el_

2.0.7 • Public • Published

El_

Super lightweight tool for creating DOM elements.

Examples

Quick code example

import {$el} from 'el_';

document.body.appendChild($el(`
  <h1></h1>
  <form id="form">
    <input id="query" type="text" />
    <input type="submit" />
  </form>
`, {
  'onsubmit #form': (el, event) => {
    event.preventDefault();
    alert(el.querySelector('#query').value);
  },
  'find h1': 'Hello, dude!'
}));

Readme

Keywords

Package Sidebar

Install

npm i el_

Weekly Downloads

5

Version

2.0.7

License

ISC

Last publish

Collaborators

  • jmas