jQuery Things
Sep 2, 2018 · 1 min read
The dolor sign $ happening around you everyday
jQuery is a lightweight, “write less, do more”, JavaScript library
The way you can use jQuery
Few more ways to download / link jQuery into your web page.
- Download source code directly https://jquery.com/download/
- Using jQuery with npm / Yarn or Bower — My personal preference
3. Linked through CDN https://jquery.com/download/#using-jquery-with-a-cdn
Aliasing and Archiving
If you need to use $ as an alias for another JavaScript library alongside jQuery, return control of $ back to the other library with simple call to .noConflict()
const jQ = $.noConflict();
