2.0.7 • Published 10 years ago

el_ v2.0.7

Weekly downloads
1
License
ISC
Repository
github
Last release
10 years ago

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!'
}));
2.0.7

10 years ago

2.0.6

10 years ago

2.0.5

10 years ago

2.0.4

10 years ago

2.0.3

10 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.10

10 years ago

1.0.9

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago