1.0.0 • Published 6 years ago

jlite-js v1.0.0

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

jLite

Tired of using full JavaScript method names like document.querySelector()? I am pleased to introduce you jQuery styled shorthands for VanillaJS common methods.

Usage

$('#div-id'); /* equivalent of document.querySelector('#div-id') */
$$('.many-divs'); /* equivalent of `document.querySelectorAll('.many-divs') */

This mini-library has been created due to laziness :) Feel free to use!