jQuery has been removed

jQuery has been removed, don't use jQuery for new projects

These problems have already been solved

* $() selector,

* $.ajax,

* $dom.on("click", function() {}), 

* HTML5 API compatible

* Custom html tags

Corresponds as follows:

* querySelectorAll

- http://youmightnotneedjquery.com/

* fetch for ajax
- https://github.com/github/fetch

* delegated-events for event handling
- https://github.com/dgraham/delegated-events

* polyfills for standard DOM stuff
http://philipwalton.github.io/polyfill/

* CustomElements on the rise
- https://github.com/search?q=topic%3Aweb-components+org%3Agithub

Related Posts