JQL: a JQuery alike module
This library is inspired by the idea that some JQuery was too good
to ditch.
It is developed in a modular fashion and uses plain ES20xx, so not really suitable for older browsers.
It is not a replacement for JQuery.
Consider it a subset of JQuery alike methods for (collections of) HTML elements within a HTML document.
To use the module in your browser script use:
<script type="module">
import $ from "https://cdn.jsdelivr.net/gh/KooiInc/[email protected]/lib/JQLBundle.js";
// or (Note: jsdelivr source map is useless)
import $ from "https://cdn.jsdelivr.net/npm/[email protected]/lib/JQLBundle.min.js";
// or (note: JQueryLike.min.js will *not* work)
import $ from "https://cdn.jsdelivr.net/gh/KooiInc/[email protected]/src/JQueryLike.js";
</script>
The module can also be installed from npm using npm install jqlmodule
.
Explore this demo/example,
or explore the the code documentation.
Have fun!