2024-10-31
3207
#vanilla javascript
Shalitha Suranga
197211
114
Oct 31, 2024 â‹… 11 min read

Why jQuery 4 is a good reminder to stop using jQuery

Shalitha Suranga Programmer | Author of Neutralino.js | Technical Writer

Recent posts:

What happens when dev communities die Stack Overflow’s slow collapse

What happens when dev communities die: Stack Overflow’s slow collapse

Explore how Stack Overflow’s slow collapse affects programming and the possible future for Stack Overflow vs. generative AI competition.

Shalitha Suranga
Aug 29, 2025 â‹… 10 min read
How to build a multimodal AI app with voice and vision in Next.js

How to build a multimodal AI app with voice and vision in Next.js

Learn how to build multimodal AI interactions to process images, audio, and even real-time video streams, using Next.js and Gemini.

Elijah Asaolu
Aug 29, 2025 â‹… 6 min read
i tried kiro and here is what i learned

I tried out Kiro: Here’s what I learned

Check out Kiro, AWS’s AI-powered IDE, see what makes it different from other AI coding tools, and explore whether it lives up to the hype.

Elijah Asaolu
Aug 28, 2025 â‹… 5 min read
Go Design Pattern Article Image With Logo

Why Go design patterns still matter

Here’s how three design patterns solved our Go microservices scaling problems without sacrificing simplicity.

Peter Aideloje
Aug 28, 2025 â‹… 2 min read
View all posts

One Reply to "Why jQuery 4 is a good reminder to stop using jQuery"

  1. This is indeed an interesting post.

    I have to contra with three aspects the post leaves unmentioned, though:
    1. Developer’s time is expensive. A more concise or fluent API that saves development time makes sense even in the modern age.
    2. Looking at the examples, I still find the jQuery API more developer friendly. Like method call chaining, manipulating classes of multiple selected elements with a single call, etc.
    3. Legacy apps.

    I wouldn’t use jQuery in a greenfield JS app, but it has its place in the browser environment.
    However, modern JS apps tend to opt-in for libs like lodash instead of jQuery to polyfill the utility methods it provides.
    Some more backend-heavy apps I’ve used recently opted for Alpine instead of jQuery for DOM manipulation.

    I have worked with multiple legacy apps using jQuery as well as apps in Vue and previously a bit of React, this is just a bit of my experience speaking.

    I actually welcome the new/more-modern jQuery version. Replacing jQuery in legacy apps would be pain, so a refreshed version might be a blessing in certain scenarios.

Leave a Reply