FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index mod_harbour Why I'm removing jQuery from my project โ€“ and why it makes sense
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Why I'm removing jQuery from my project โ€“ and why it makes sense
Posted: Fri Jun 27, 2025 08:14 AM

Hello,

I'm currently working on a complex DBF viewer using Bootstrap 5 and decided to remove jQuery completely.

Here's why:

Modern browsers now support everything jQuery was originally needed for: fetch, classList, querySelector, addEventListener, etc.

Bootstrap 5 no longer depends on jQuery

Fewer dependencies = better maintainability, faster load times, and more control

jQuery has become technical debt in many projects โ€“ it's no longer a good fit for modern toolchains

Iโ€™m now replacing all uses of .on, .val, .tooltip, .ready, etc. with native alternatives. The effort? Moderate. The benefit? Significant.

Best,

Otto

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Why I'm removing jQuery from my project โ€“ and why it makes sense
Posted: Fri Jun 27, 2025 08:17 AM

And I add: jQuery is only a wrapper to JavaScript (essentially, sintactic sugar), so it has never been useful for me.

Continue the discussion