DEV Community

Discussion on: Progressing from a beginner to intermediate developer

Collapse
 
micahlt profile image
Micah Lindley

But there's no reason to load all of jQuery anymore if you can just use ES6 JavaScript or Typescript. Using $('#el') is just a sugarcoating of document.querySelector, so really jQuery just adds bloat to a site unless you're using plugins.

Thread Thread
 
charliejoel profile image
Charlie Joel

That's a good point and I agree with you. It can still be useful to know as you may get dropped into a project that uses jQuery and you need to be able to work with it.
That said, jQuery seems to have been phased out a lot in general recently.

Thread Thread
 
micahlt profile image
Micah Lindley

That's very true - and jQuery is also (unfortunately) still used as a base for Wordpress sites which run more than half the Internet. As ES6 gets even closer to 99% browser support globally, I'm hoping that we'll see the complete eradication of jQuery.

Some comments have been hidden by the post's author - find out more