kijs
v0.0.2-b37
Published
Library DOM replace jQuery for >IE11 [View docs](https://tachibana-shin.github.io/kijs)
Downloads
16
Readme
kijs
Library DOM replace jQuery for >IE11 View docs
Example:
import $ from "kijs"
$("body")
.append("<div id='count'>0")
.append("<button>Click me!")
let count = 0
$("button").click(() => {
$("#count").text(++count)
})