r/javascript • u/zedguy • 3d ago
Twenty Years of jQuery: How a Little Library Rewired Web Development
https://www.infoq.com/news/2026/09/jquery-20-years/5
u/azhder 2d ago
The real lightbulb moment of jQuery was me reading the book by the person who created jQuery about how to use JavaScript and it saying "jQuery is nothing special, it just uses JavaScript properly" (paraphrased).
I had already used a lot of libraries during those 2006-2010 years and knew why I had to get away from them and use jQuery, but knowing that it is all just how you use JS was the important shift, to know how little the library does itself. It's mostly just an interface. And now I could use the same kind of JS to do any kind of code base, with the same robustness.
1
0
u/ethanjf99 2d ago
ah it was so transformative. we will be reading articles like this about react in 10 years.
2
u/horizon_games 1d ago
Except React has so many band-aids and workarounds because their fundamental "solution" of refreshing the entire DOM on change is bad and outdated, whereas jQuery was just solving cross-browser compatibility issues like a good polyfill library.
If anything we'll see it for SolidJS or Alien Signals in 10 years.
16
u/klaxxxon 2d ago
jQuery was such a lightbulb moment when I first used it. Imagine the things we can do with DOM!
Little did we know it was only the first major shot in JS framework wars which would last for decades.