Ask HN: Is jQuery on its way out?
1–10 of 60 posts
Re: Ask HN: Is jQuery on its way out?
#2Re: Ask HN: Is jQuery on its way out?
#3Popular component frameworks such as bootstrap still uses jQuery.
Re: Ask HN: Is jQuery on its way out?
#4Yes its on its way out. I don't think learning it is a waste of time if you touch legacy stuff. jQuery still does some things better than DOM, but if all you need is XHR and css selectors, you don't need it anymore. Popular component frameworks such as bootstrap still uses jQuery.
Re: Ask HN: Is jQuery on its way out?
#5Yes its on its way out. I don't think learning it is a waste of time if you touch legacy stuff. jQuery still does some things better than DOM, but if all you need is XHR and css selectors, you don't need it anymore. Popular component frameworks such as bootstrap still uses jQuery.
Re: Ask HN: Is jQuery on its way out?
#6Jquery's strength was in its polyfills for older browsers for selecting elements and the like. Since it's introduction, browsers have pretty much replaced all of jquery's functionality intrinsically.
Re: Ask HN: Is jQuery on its way out?
#7Re: Ask HN: Is jQuery on its way out?
#8jQuery is likely diminishing but its death has been somewhat overstated. There's at least two areas that hurt jQuery:
- IE11 is disappearing for consumers (less so in corporations/governments)
- ECMAScript 6 now offers enough conveniences so jQuery isn't as "mandatory" as perhaps it once did.
We still use jQuery with AngularJS, but we also need to support business users so our IE11 share is significantly higher than most consumer sites.
Re: Ask HN: Is jQuery on its way out?
#9Yes its on its way out. I don't think learning it is a waste of time if you touch legacy stuff. jQuery still does some things better than DOM, but if all you need is XHR and css selectors, you don't need it anymore. Popular component frameworks such as bootstrap still uses jQuery.
https://github.com/twbs/bootstrap/pull/23586 V5 won't.
Re: Ask HN: Is jQuery on its way out?
#10I would say it's done. ES6 javascript replaces a lot of its functionality as well.
I switched from jQuery to Vue/ES6 (last March) and would never contemplate switching back. The difference is like night and day.
The next stage I'm thinking about is moving over to TypeScript for more productivity and safer development.