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:

Your AI has agency — here’s how to architect its frontend

AI’s not just following orders anymore. If you’re building the frontend, here’s how to design interfaces that actually understand your agent’s smarts.

Rosario De Chiara
Jun 25, 2025 ⋅ 5 min read

How to design apps with Apple Intelligence in mind

Apple Intelligence is here. What does it mean for frontend dev and UX? Explore the core features of the update, do’s and don’ts for designing with Apple Intelligence in mind, and reflect on the future of AI design.

Murat Yüksel
Jun 24, 2025 ⋅ 10 min read

How to optimize your Next.js app with after()

Next.js’ after() is a new API that lets you run logic after your route has finished rendering, without blocking the client.

Temitope Oyedele
Jun 24, 2025 ⋅ 11 min read

JavaScript loops explained, and best practices

JavaScript loops like for, for...of, and for...in are constructs that help run a piece of code multiple times.

Rahul Padalkar
Jun 23, 2025 ⋅ 8 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