2.0.7 • Published 8 years ago

el_ v2.0.7

Weekly downloads
1
License
ISC
Repository
github
Last release
8 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

8 years ago

2.0.6

8 years ago

2.0.5

8 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago