Settings

Theme

jQuery 4

blog.jquery.com

754 points by OuterVale a day ago · 266 comments

Reader

usere9364382 8 hours ago

For the record, JQuery is NOT to blame for the so called spaghetti code. Most people seem to blame JQuery for their own short coming. Most people also do not seem to understand the genius that was contained in JQuery. See "http://eyeandtea.com/crxcmp" for an example of what could already be done with JQuery in the IE8 era. A lot of the things later invented in the browser were to mask these shortcomings instead of admitting to them. The shadow DOM is one example. JQuery already had a feature that rendered the shadow DOM unnecessary, but it would require discipline that most developers did not have nor understand.

Having said that, after JQuery 1.x, and in particular, the changing, the deprecating, and the dropping of things here and there, JQuery no longer made sense. Somewhat similar to the SDL situation in the C/C++ word. An important role of JQuery, similar to SDL, was a strong code contract before anything else, and if the developer now has to account for JQuery's version differences like having to account for browser differences, what is the point.

  • JoeyJoJoJr 5 hours ago

    Wait, SDL is no longer relevant? What is the alternative?

  • jxhdbdbd 2 hours ago

    I don't understand your comparison at all, SDL is a C library not a C++ library

    Are you talking about STL? But even there it makes no sense

  • synergy20 6 hours ago

    sdl is still alive and kicking, doesn't seem looking ground to new replacements?

alnico 15 hours ago

Congrats to everyone involved in the jQuery 4.0 release.

For what it’s worth, if you’re looking for a more structured approach on top of jQuery, JsViews (https://jsviews.com) provides a reactive templating and data-binding system that’s been around and stable for many years.

It hasn’t seen the same level of adoption as newer frameworks, but it may still be of interest to people who prefer the jQuery ecosystem.

  • vanderZwan 14 hours ago

    That looks interesting, I'm not likely to write any jQuery any time soon, but I'll check out the source code to see if I can learn anything from it.

    Regarding adoption levels, the JsViews website made me think I had accidentally toggled the "Desktop Site" option in my Iceweasel browser, I wonder if that scared people off. Or perhaps it's because, as others mentioned, most jQuery development these days is in legacy codebases where the devs are not allowed to add any new libraries, reducing the adoption rates of any new jQuery libraries even more than you'd expect based on the raw nrs of jQuery users.

    (the website does work though, and it loads fast. Which is something I've always appreciated about jQuery based sites still alive today. The only thing I'm missing is any indication of how big it is when minified + gzipped. EDIT: jsrender.js is 33.74 kB, jsrender.min.js a mere 12.82 kB)

    • alnico 13 hours ago

      I’ve been collaborating with Boris, the author of JsViews, and we do have plans to modernize the website—which speaks directly to your point about first impressions and adoption. You’re absolutely right that presentation matters; if something looks dated, people may disengage before digging any deeper.

      I also raised the jQuery dependency concern with Boris for exactly the reason you mentioned: many teams automatically rule out anything that requires jQuery, especially outside of legacy codebases. That’s a real barrier today.

      For what it’s worth, a jQuery-free version may happen. Boris is actively exploring it, but he’s making no promises—it’s a non-trivial problem and would effectively require a full rewrite rather than a simple refactor.

  • shimman 10 hours ago

    Never heard of JsViews but it looks interesting. For other "modern" jQuery approaches, I like cheerio and alpine myself:

    https://cheerio.js.org/

    https://alpinejs.dev/

chao- a day ago

I cannot express how much I admire the amount of effort jQuery puts into their upgrade tools.

karim79 a day ago

Still one of my favourite libs on the whole planet. I will always love jQuery. It is responsible for my career in (real) companies.

Live on jQuery! Go forth and multiply!

  • alexchantavy 8 hours ago

    I love tech hype cycles haha, I remember when you got laughed at for using jquery and now it seems everyone’s burned out and happy to go back to a simpler time

  • sieep 21 hours ago

    all these kids chasing the new frameworks...jQuery and .NET framework have always kept me fed!

  • ei8ths 18 hours ago

    so true, 15 years of jQuery for me, it's my go to.

  • radicalethics 18 hours ago

    Someone should just hook up a virtual dom to jQuery, it's got a whole plugin ecosystem that AI could really re-use. Jquery + Jquery UI + Jquery Plugins + AI is probably a super power we're all overlooking.

    • cj 17 hours ago

      The first time I read this I assumed you were joking about hooking up a virtual dom. But I think you're being serious.

      Why hook up a virtual dom when you have a real one? Unless you're saying AI can't interact reliably with a real browser yet.

flomo a day ago

Whenever HTMX comes up here, I always think "isn't that just some gobbledy-gook which replaces about 3 lines of imperative jquery?"

Anyway, jQuery always did the job, use it forever if it solves your problems.

  • recursivedoubts 15 hours ago

    yes: htmx grew out of intercooler.js, which was based on jquery and inspired by the jQuery.load() method:

    https://api.jquery.com/load/

    which I found while doing some performance work at one point. intercooler.js started as a custom function that hooked .load() in based on custom attributes (a trick I learned from angular 1.x)

    deeply respect and love jquery

  • gbalduzzi a day ago

    The problem with jQuery is that, being imperative, it quickly becomes complex when you need to handle more than one thing because you need to cover imperatively all cases.

    • flomo a day ago

      Yeah, that's the other HN koan about "You probably don't need React if..." But if you are using jquery/vanilla to shove state into your HTML, you probably actually do need something like react.

      • epolanski 16 hours ago

        It's not really about state but dom updates.

        • flomo 4 hours ago

          After having some time to think about it, I've seen some really perverse DOM stuff in jquery. Like $(el).next().children(3) type stuff. So I think this stuff really fell-over when there was 'too much state' for the DOM.

    • eloisius 20 hours ago

      Part of me feels the same way, and ~2015 me was full on SPA believer, but nowadays I sigh a little sigh of relief when I land on a site with the aesthetic markers of PHP and jQuery and not whatever Facebook Marketplace is made out of. Not saying I’d personally want to code in either of them, but I appreciate that they work (or fail) predictably, and usually don’t grind my browser tab to a halt. Maybe it’s because sites that used jQuery and survived, survived because they didn’t exceed a very low threshold of complexity.

      • skizm 19 hours ago

        Facebook is PHP ironically.

        • connorgurney 17 hours ago

          It was once upon a time, hence them moving to HHVM to interpret it, but it’s been all but replaced with a PHP spinoff named Hacklang now.

        • ryan_n 19 hours ago

          I think in 2026 Facebook is a conglomeration of a bunch of things... Definitely not just PHP anymore.

  • hsbauauvhabzb a day ago

    These days I’ve moved to native JS, but hot damn the $() selector interface was elegant and minimal vs document.getElement[s]by[attribute)].

    While presumably jquery is slower than native selectors, maybe that could be pre-computed away.

    • jraph a day ago

      In case you missed them: check out querySelector and querySelectorAll. They are closer to what the jQuery selector system does, and I think they were inspired by it.

      If the verbosity bothers you, you can always define an utility function with a short name (although I'm not personally a fan of this kind of things).

      https://developer.mozilla.org/docs/Web/API/Document/querySel...

      https://developer.mozilla.org/docs/Web/API/Document/querySel...

      https://developer.mozilla.org/docs/Web/API/Element/querySele...

      https://developer.mozilla.org/docs/Web/API/Element/querySele...

      • hyperhello 20 hours ago

        body.qsa('.class').forEach(e=>): Yes, add qs() and Array.from(qsa()) aliases to the Node prototype, and .body to the window, and you’ve saved yourself thousands of keystrokes. Then you can get creative with Proxy if you want to, but I never saw the need.

        • jraph 20 hours ago

          Please don't mess with native prototypes though.

          • Sammi 20 hours ago

            Agree if you've a library developer. If you're an app or website developer then it's your project. Everyone else should steer clear of adding to native prototypes, just so they are clean for the end user.

            • jraph 19 hours ago

              If you are an app or website developer, at least you won't break other's systems.

              But you might still break stuff in your own projects. Imagine you extend a native prototype with a method, and later the native prototype starts having a method with the same name.

              Newer libraries start using that new standard method.

              You upgrade the libraries your website depends on, or add a dependency, and this new code happens to depend on that native prototype. Only you replaced it with your custom method, and that method likely doesn't have the exact same behavior. You broke that new code and fixing this might not be trivial because uses of your custom method are sprinkled everywhere in your code.

              It only works if you ever works on projects that have zero dependencies, or dependencies you never update.

              Or you could spare yourself the troubles and define a method that takes the node in parameter.

              It's also a question of forming good habits: you could be working on your projects now, forming a habit of extending prototypes, but will you remember not to do this the day you write a library?

              By the way, how can you be sure you won't move some of your app code to a library because you like your utility functions and would like to reuse them in another project of yours? And why not open source that shared code, so you can just install it with NPM? Bam, that stuff is a library now.

              • janderland 10 hours ago

                > You upgrade the libraries your website depends on, or add a dependency, and this new code happens to depend on that native prototype. Only you replaced it with your custom method, and that method likely doesn't have the exact same behavior. You broke that new code and fixing this might not be trivial because uses of your custom method are sprinkled everywhere in your code.

                He was suggesting adding a prototype method, not replacing one. Unless the library your using is also adding prototypes, I can't think of an issue with this. Sure, if a new version of JS ends up using these names then things could break, but I'd bet this won't cause him a problem in actuality.

                • jraph 2 hours ago

                  I'm discussing the "adding a prototype method" case and I'm explaining in my comment why this can be, in fact, an issue.

              • hyperhello 18 hours ago

                Rules beget rules.

    • adzm 20 hours ago

      The $ (and $$) selector functions live on in chrome/chromium devtools!

    • itsHel 19 hours ago

      const $ = document.querySelector.bind(document);

      const $$ = document.querySelectorAll.bind(document);

    • egeozcan a day ago

      jQuery but gets compiled out like svelte... Not a bad idea at all.

      • efskap 21 hours ago

        I hate to sound like a webdev stereotype but surely the parsing step of querySelector, which is cached, is not slow enough to warrant maintaining such a build step.

    • Sammi 19 hours ago

      Very simple jquery implementation with all the easy apis:

        (function (global) {
          function $(selector, context = document) {
            let elements = [];
      
            if (typeof selector === "string") {
              elements = Array.from(context.querySelectorAll(selector));
            } else if (selector instanceof Element || selector === window || selector === document) {
              elements = [selector];
            } else if (selector instanceof NodeList || Array.isArray(selector)) {
              elements = Array.from(selector);
            } else if (typeof selector === "function") {
              // DOM ready
              if (document.readyState !== "loading") {
                selector();
              } else {
                document.addEventListener("DOMContentLoaded", selector);
              }
              return;
            }
      
            return new Dollar(elements);
          }
      
          class Dollar {
            constructor(elements) {
              this.elements = elements;
            }
      
            // Iterate
            each(callback) {
              this.elements.forEach((el, i) => callback.call(el, el, i));
              return this;
            }
      
            // Events
            on(event, handler, options) {
              return this.each(el => el.addEventListener(event, handler, options));
            }
      
            off(event, handler, options) {
              return this.each(el => el.removeEventListener(event, handler, options));
            }
      
            // Classes
            addClass(className) {
              return this.each(el => el.classList.add(...className.split(" ")));
            }
      
            removeClass(className) {
              return this.each(el => el.classList.remove(...className.split(" ")));
            }
      
            toggleClass(className) {
              return this.each(el => el.classList.toggle(className));
            }
      
            hasClass(className) {
              return this.elements[0]?.classList.contains(className) ?? false;
            }
      
            // Attributes
            attr(name, value) {
              if (value === undefined) {
                return this.elements[0]?.getAttribute(name);
              }
              return this.each(el => el.setAttribute(name, value));
            }
      
            removeAttr(name) {
              return this.each(el => el.removeAttribute(name));
            }
      
            // Content
            html(value) {
              if (value === undefined) {
                return this.elements[0]?.innerHTML;
              }
              return this.each(el => (el.innerHTML = value));
            }
      
            text(value) {
              if (value === undefined) {
                return this.elements[0]?.textContent;
              }
              return this.each(el => (el.textContent = value));
            }
      
            // DOM manipulation
            append(content) {
              return this.each(el => {
                if (content instanceof Element) {
                  el.appendChild(content.cloneNode(true));
                } else {
                  el.insertAdjacentHTML("beforeend", content);
                }
              });
            }
      
            remove() {
              return this.each(el => el.remove());
            }
      
            // Utilities
            get(index = 0) {
              return this.elements[index];
            }
      
            first() {
              return new Dollar(this.elements.slice(0, 1));
            }
      
            last() {
              return new Dollar(this.elements.slice(-1));
            }
          }
      
          global.$ = $;
        })(window);
    • Zardoz84 16 hours ago

      const $ = document.querySelectorAll

  • sgt a day ago

    I pretty much use HTMX and vanilla JS to solve most problems, when I use Django at least. Keeps things simple and gives that SPA feel to the app too.

ksec 17 hours ago

20 Years! I remember when jQuery first release I thought in 5 to 10 years time we wont need jQuery because everything jQuery has will be built into the browser or becomes part of HTML Spec.

But then Google, Chrome, iPhone, PWA or JS for everything took over and took a completely different path to what I imagine webpage would be.

lrvick a day ago

Everything I ever used jquery for 15 years ago, I found myself able to do with the CSS and the JS standard library maybe 10 years ago. I honestly am confused when I see jquery used today for anything.

Is there still anything jquery does you cannot easily do with a couple lines of stdlib?

  • simondotau a day ago

    The terse and chainable jQuery syntax is more readable, easier to remember, and thus more pleasant to maintain. Rewriting for stdlib is easy, but bloats out the code by forcing you to pepper in redundant boilerplate on nearly every line.

  • jampekka a day ago

    Jquery does many things in one line that requires a couple lines of stdlib. Writing less code is what libraries are for.

    • glemion43 a day ago

      Until you have to upgrade it and it bites you

      • jampekka a day ago

        jQuery's big point was to give a consistent API over inconsistent browser implementations, so it typically saves you from bites more often than it bites you.

blakewatson a day ago

Related: This is a nice write-up of how to write reactive jQuery. It's presented as an alternative to jQuery spaghetti code, in the context of being in a legacy codebase where you might not have access to newer frameworks.

https://css-tricks.com/reactive-jquery-for-spaghetti-fied-le...

  • lioeters a day ago

    This brought me flashbacks of jQuery spaghetti monsters from years ago, some were Backbone related. In retrospect, over-engineered React code can be worse than decently organized jQuery code, but some jQuery mess was worse than any React code. So I guess I'm saying, React did raise the bar and standard of quality - but it can get to be too much, sometimes a judicious use of old familiar tool gets the job done.

    • epolanski 16 hours ago

      You reminded me of a time where one of my clients asked me to add a feature on a file uploader written in react/redux. This was early 2021.

      I kid you not, there were 30+ redux actions chaining in the most incomprehensible ways, the form literally had a textual input, a button to open the file explorer and a submit button.

      It took few weeks one of their Romanian team to build it and apparently that team was reassigned and nobody could touch it without them.

      I remember writing pages and pages of notes to understand how this all tied up in those extremely complex chains and claiming progress after few hours when I achieved to simplify the flow by removing a handful of these actions. Hooray.

      Then it suddenly dawned on me that...I could just rewrite it from scratch.

      Nuked the entirety of that nonsense and replaced it with a single useState in a matter of few hours also implemented the newly requested features.

      The client could not believe my progress and the fact I also removed many of their previous issues.

      Then I had a second realization: React was useless too and it got dropped for native HTML forms and a handful of JS callbacks.

      • normie3000 15 hours ago

        > I kid you not, there were 30+ redux actions chaining in the most incomprehensible ways

        I 100% believe this, as it describes all the redux codebases I've seen. The library seems to be an antipattern of indirection.

        • gejose 11 hours ago

          This sounds like an engineering quality problem rather than a tooling problem.

          Well structured redux (or mobx or zustand for that matter) can be highly maintainable & performant, in comparison to a codebase with poorly thought out useState calls littered everywhere and deep levels of prop drilling.

          Redux Toolkit has been a nice batteries-included way to use redux for a while now https://redux-toolkit.js.org/

          But the popularity of Redux especially in the earlier days of react means there are quite a lot of redux codebases around, and by now many of them are legacy.

          • normie3000 5 hours ago

            I took a look at the quickstart guide at https://redux-toolkit.js.org/tutorials/quick-start and to me it still seems to add a lot of indirection.

            • insin 4 hours ago

              "We'll build a big centralised store and take slices out of it" still feels like something you should eventually realise your app now needs rather than a starting point, even in libraries which do it without as much ceremony and indirection as Redux.

        • Izkata 8 hours ago

          > The library seems to be an antipattern of indirection.

          Auto-generated actions from slices are a codified way to do what was once considered an antipattern: Tying an action directly to a single reducer, instead of actions being an action the user could do on a page (which multiple reducers could respond to).

        • Capricorn2481 15 hours ago

          I really can't understand how someone would make 30 redux actions for a simple use case, as someone has implemented the exact same thing. But yes, not a fan of Redux myself

          • loglog 14 hours ago

            Have some pity for those Senior Expert Architect Full-Stack Developers (fresh out of boot camp) in urgent need of job security.

            • epolanski 12 hours ago

              The original developers weren't bootcampers but engineering graduates.

              And in the same way faang is filled with leetcode blackbelt charlatans writing slop, so is Romania apparently.

              • namtab00 12 hours ago

                Great generalization of an entire country's sector workforce.

                I'm sure you'd 100% approve of such a statement of your country when based on one anecdotal recount (even if it true).

                • epolanski 11 hours ago

                  It's not about Romania or any other country.

                  I was making a point that whether you graduate or not has little correlation with your capacity of handling higher abstractions and complexity, because neither bootcampers nor engineering graduates have the experience of building complex systems, let alone under time, tech leadership and management pressure.

                  It is likely that the original authors may have found themselves in a situation where they were tasked to build a trivial form with technologies they were not accustomed to at the request of some superior and they ended writing a soup.

          • gloryjulio 14 hours ago

            Many years ago, I used Redux to build real time streaming data processing layer. Basically I need to receive, merge, and process multiple data streams into a single realtime data pool. After that,consuming the realtime data becomes dead easy.

            Even now I am not sure I could find a better tool to deal with real time data and synchronization. But for simple crud Redux is mostly overkill

    • Sammi 20 hours ago

      I hear you saying that React raised the floor but also lowered the ceiling.

    • TuringNYC 12 hours ago

      >> This brought me flashbacks of jQuery spaghetti monsters from years ago, some were Backbone related.

      To be fair, jQuery was a response to the the IE and JS variant mess of the early 2000s. jQuery made development possible without debugging across three browser varients.

    • root_axis 9 hours ago

      React made complex interactive UIs a lot easier to manage than jQuery, but that resulted in many developers adding a lot more complexity just because they could.

  • augusto-moura 11 hours ago

    In ol'times people used BackboneJS[1] for that purpose. And surprisingly enough, it is still being actively supported[2].

    If someone is still using jQuery for legacy reasons, BackboneJS might be a good intermediate step before going for a modern framework. Backbone is pretty light and pretty easy to grasp

    [1]: https://backbonejs.org/

    [2]: https://github.com/jashkenas/backbone/tags

    • Izkata 8 hours ago

      There was a period where BackboneJS models were used as the datastore for React, before Redux took over. I haven't used it like this myself, but could definitely see it as a way to do an incremental rewrite.

  • Klaster_1 a day ago

    I used this approach before and it indeed works better than the 2010-style jQuery mess. A good fit for userscripts too, where the problem you attempt to solve is fairly limited and having dependencies, especially with a build steps, is a pain. Note that you don't need jQuery for this at all, unless you are somehow stuck with ancient browser support as a requirement - querySelector, addEventListener, innerHtml - the basic building blocks of the approach - have been available and stable for a long time.

    • doix a day ago

      Unfortunately, nowadays writing userscripts is much harder than it used to be. Most websites are using some sort of reactive FE framework so you need to make extensive use of mutationObservers (or whatever the equivalent is in jQuery I guess).

      • ComputerGuru 16 hours ago

        I'm not a frontend dev but I came up with this and use it a lot in my userscripts. It's not the most efficient (it can certainly be refactored to create a MutationObserver singleton and then have each call hook into that) but it works well enough for my needs and lets me basically use an old-school to dealing with reactive sites (so long as you are fine with using async):

            function awaitElement(selector) {
                return awaitPredicate(selector, _ => true);
            }
        
            function awaitPredicate(selector, predicate) {
                return new Promise((resolve, _reject) => {
                    for (const el of document.querySelectorAll(selector)) {
                        if (predicate(el)) {
                            resolve(el);
                            return;
                        }
                    }
        
                    // Create a MutationObserver to listen for changes
                    const observer = new MutationObserver((_mutations, obs) => {
                        // You could search just inside _mutations instead of the entire DOM.
                        // Efficiency will depend primarily on how precise your selector is.
                        for (const el of document.querySelectorAll(selector)) {
                            if (predicate(el)) {
                                resolve(el);
                                obs.disconnect(); // Don't forget to disconnect the observer!
                                break;
                            }
                        }
                    });
        
                    // Start observing the document
                    observer.observe(document.documentElement, {
                        childList: true,
                        subtree: true,
                        attributes: false,
                        characterData: false,
                    });
                });
            }
      • egeozcan a day ago

        It's easier to write with LLMs. One-off projects (the way I treat userscripts) is where they really shine.

        Oh the horrible things I do with Instagram...

      • hebelehubele a day ago

        I often go for `setInterval` over `MutationObserver` because it works and I don't need instant reactivity and I don't have to think too much about it.

      • Klaster_1 a day ago

        Very true. I guess that depends on what websites you find issues with? I just checked mine and all of those are quality of life improvements for fully server rendered sites like HN or phpBB forums.

        • doix a day ago

          Yeah, I mostly use it for QoL improvements but for work related things. So Jira, Bitbucket, GitHub, Linear etc. basically whatever my employer uses. Back in the early 2010s most of that software was fully server rendered. Nowadays it's pretty rare for that to be the case.

          I just try and get LLMs to do it for me because I'm lazy, and they like to use setInterval instead of mutationObservers and if it works, I just live with the inefficiency.

          • mschuster91 a day ago

            The Atlassian stack is particularly bad to extend IMHO given that there are sooooo many API endpoints that their UI calls and most of them are dog slow.

  • 1123581321 18 hours ago

    The last major jquery app I wrote ended up using a similar reactive pattern. I had to shoehorn a custom search engine frontend into a Joomla CMS where I wasn’t allowed to change much. Good times!

  • kccqzy 7 hours ago

    But if you do that, you'll also find it easy to write plain JS without any libraries or frameworks. document.querySelectorAll is just slightly more verbose than $(). I have personally done this: for simple web pages, I just eschew all dependencies and write plain JS.

  • mb2100 19 hours ago

    That's a very nice pattern indeed. If you add signals, the update function even gets called automatically. That's basically what we do in [Reactive Mastro](https://mastrojs.github.io/reactive/) ;-)

  • insin 8 hours ago

    This is still the way - jQuery or not - for UI where you can't/don't want to use a component library. I use the same approach for my browser extensions, both for page scripts and options pages. Writing features so you update state then re-render also means you get things like automatically applying option changes live in page scripts, rather than having to reload the page, for free. Just receive the updated options and re-run everything.

    Browser extension options pages are mostly a form mapped to what you have stored in the Storage API, so implementing them by handling the change event on a <form> wrapping all the options (no manual event listener boilerplate) then calling a render() function which applies classes to relevant elements (<body> classes are so good for conditionally showing/hiding things without manually touching the DOM), updates all form fields via named form.elements and re-generates any unique UI elements makes it so un-painful to change things without worrying you're missing a manual DOM update somewhere.

    My options pages are Zen Garden-ing 5 different browser-specific UI themes from the same markup to match their host browsers, which is a brittle nightmare to maintain in an app which needs to change over time rather than static demo HTML, but once you've tamed the CSS, the state handling and re-rendering is so painless I'm sticking with it for a while yet, even though it would be long-term easier if I used Preact+htm for no-build option components which know what the active theme is and can generate specific UI for it.

    My favourite dirty old-school knowledge is still the named global created for an element with an id, why bother selecting an element when it's right there (once you know you need to avoid global name collisions)?. I use those suckers all the time for quick fun stuff and one-off tool pages.

        <h3 id="communityNoteHeading">
          Readers added context they thought people might want to know
        </h3>
        <div>
          <textarea id="communityNote" placeholder="Note" rows="5" style="width: 400px"></textarea>
        </div>
        <button id="communityNoteCopyButton" type="button">Copy</button>
        <script>
          communityNoteCopyButton.addEventListener('click', () => {
            navigator.clipboard.writeText([
              communityNoteHeading.innerText,
              communityNote.value,
            ].join('\n\n'))
            communityNoteCopyButton.innerText = 'Copied'
            setTimeout(() => communityNoteCopyButton.innerText = 'Copy', 1000)
          })
        </script>
  • davidzweig 11 hours ago

    MobX autoruns happily call jQuery functions.

jusonchan81 a day ago

The first time I truly enjoyed web development was when I got the hang of jQuery. Made everything so much simple and usable!

  • Joel_Mckay a day ago

    jQuery made a messy ecosystem slightly less fragmented. Combined with CKEditor it effectively tamed a lot of web-developer chaos until nodejs dropped. =3

gethly a day ago

jQuery was peak JavaScript.

Good times, I'm glad it is still around.

  • shevy-java a day ago

    It is still used by many websites.

    • marticode a day ago

      Indeed. Though a lot of its feature found their way into plain vanilla Javascript and browsers, the syntax is still so much easier with jQuery.

      • kulahan 7 hours ago

        The clean and simple syntax was always the reason to use jQuery. I remember seeing sites that were anti-JQ, so they'd show how you could replace a single jQuery line with 9 vanilla JS lines and uh... somehow this would improve things?

        I can't believe how much public opinion has changed over the years. Love it, actually.

b3ing a day ago

Nice to see it still around and updated. The sad part is I guess this means React will be around in 2060.

  • altern8 a day ago

    What's wrong with React?

    It made it so much better to build apps vs. spaghetti jQuery.

    I still have nightmares about jeeping track of jQuery callbacks

    • epolanski 15 hours ago

      Complex APIs that require intimacy with internals with their gotchas.

      Complex rendering model and hard to tame lifecycle since they ditched the class component. Very hard to get performant websites (but you're free to link me what you've produced with React and prove me wrong).

      Also, biggest issue: severely misused for websites that are mostly static content and are nowhere near "app-like" nor have any particular reactivity need. 95%+ of react "applications" would've benefited from being written with a templating language instead.

      E.g. Github was miles better under all aspects when it used ruby but of course somebody had to sell to upper management their promotion case.

    • bossyTeacher 21 hours ago

      It's overly verbose, unintuitive and in 2025, having a virtual dom is no longer compulsory to write interactive web apps. If you want to write modern web apps, you can use Svelte. If you want to write web apps truly functionally, you can use Elm. React is the jQuery of our times. It was really helpful in the Angular era but we are living at the dawn of a new era now.

      • epolanski 15 hours ago

        Recommending Elm in 2025 is nonsense and I say it as an Elm lover.

        • Capricorn2481 11 hours ago

          As a non Elm lover, Why is that? I think you could freeze every JS frontend framework in time right now and use them for the next decade. JS is very backwards compatible.

          It's the ones that do some kind of server connection that introduce vulnerabilities and need active development.

      • mehagar 17 hours ago

        How is it overly verbose?

        I find it very intuitive, with the exception of useEffect.

        • spartanatreyu 8 hours ago

          React's hello world:

          ```js

          <div id="root"></div>

          <script>

          import React from 'https://esm.sh/react@19';

          import ReactDOM from 'https://esm.sh/react-dom@19/client';

          const root = ReactDOM.createRoot(document.getElementById('root'));

          root.render(<h1>Hello, world!</h1>); </script>

          ```

          ---

          HTML's hello world:

          ```html

          <h1>Hello, world!</h1>

          ```

          ---

          JS's hello world:

          Nothing, it was already done in HTML

        • bossyTeacher 2 hours ago

          React:

          import { useState } from "react";

          function Counter() { const [count, setCount] = useState(0);

            return (
              <button onClick={() => setCount(count + 1)}>
                Count: {count}
              </button>
            );
          }

          ---------- Svelte:

          <script> let count = 0; </script>

          <button on:click={() => count += 1}> Count: {count} </button> --------------- React: function Editor({ initialText }) { const [text, setText] = useState(initialText);

            useEffect(() => {
              setText(initialText);
            }, [initialText]);
          
            return (
              <textarea
                value={text}
                onChange={e => setText(e.target.value)}
              />
            );
          } --------------------- Svelte:

          <script> export let initialText; let text = initialText;

            $: text = initialText;
          </script>

          <textarea bind:value={text} />

      • major_major_ 17 hours ago

        Svelte looks good at first until you realize that to get the best support and features you're basically required to use the meta framework SvelteKit which sucks.

    • lopatin a day ago

      The problem with React is that it solved frontend.

      So the options are to 1. Code React all day and be happy with it. 2. Come up with reasons why it's bad.

      There are many talented and intellectually curious people in the field which lean towards 2.

      • gmac a day ago

        The problem with React IMHO is it’s so dominant and so annoyingly over-engineered for many problems. I use Mithril and find it much less fuss.

        • docmars 19 hours ago

          When they started adding new hooks just to work around their own broken component/rendering lifecycle, I knew React was doomed to become a bloated mess.

          Nobody in their right mind is remembering to use `useDeferredValue` or `useEffectEvent` for their very niche uses.

          These are a direct result of React's poor component lifecycle design. Compare to Vue's granular lifecycle hooks which give you all the control you need without workarounds, and they're named in a way that make sense. [1]

          And don't get me started on React's sad excuse for global state management with Contexts. A performance nightmare full of entire tree rerenders on every state change, even if components aren't subscribing to that state. Want subscriptions? Gotta hand-roll everything or use a 3rd party state library which don't support initialization before your components render if your global state depends on other state/data in React-land.

          1. https://vuejs.org/api/composition-api-lifecycle.html

          • Capricorn2481 14 hours ago

            I'm all for people avoiding React if they want, but I do want to respond to some of this, as someone who has made a few React apps for work.

            > When they started adding new hooks just to work around their own broken component/rendering lifecycle, I knew React was doomed to become a bloated mess.

            Hooks didn't fundamentally change anything. They are ways to escape the render loop, which class components already had.

            > Nobody in their right mind is remembering to use `useDeferredValue` or `useEffectEvent` for their very niche uses.

            Maybe because you don't necessarily need to. But for what it's worth, I'm on old versions of React when these weren't things, and I've built entire SPAs out without them at work. But reading their docs, they seem fine?

            > And don't get me started on React's sad excuse for global state management with Contexts. A performance nightmare full of entire tree rerenders on every state change

            I think it's good to give context on what a rerender is. It's not the same as repainting the DOM, or even in the same order of magnitude of CPU cycles. Your entire site could rerender from a text input, but you're unlikely to notice it even with 10x CPU slowdown in Devtools, unless you put something expensive in the render cycle for no reason. Indeed, I've seen people do a fetch request every time a text input changes. Meanwhile, if I do the same slowdown on Apple Music which is made in Svelte, it practically crashes.

            But pretty much any other state management library will work the way you've described you want.

          • cyberax 11 hours ago

            How exactly is Vue better? It just introduces more artificial states, as far as I see.

            My major problem with React is the way it interacts with async processes, but that's because async processes are inherently tricky to model. Suspense helps, but I don't like it. I very much feel that the intermediate states should be explicit.

          • leptons 15 hours ago

            I use Preact, in the old-school way, without any "use-whatever" that React introduced. I like it that way. It's simple, it's very easy, and I get things done quickly without over-thinking it.

      • spartanatreyu 8 hours ago

        It didn't solve frontend, it sold developers one lie (i.e. ui = f(state) ) and managers another (developers are interchangeable gears).

        Problems are only truly solved by the folks who dedicate themselves to understanding the problem, that is: the folks working on web standards and the other folks implementing them.

        • insin 4 hours ago

          > Problems are only truly solved by the folks who dedicate themselves to understanding the problem, that is: the folks working on web standards and the other folks implementing them.

          It kills me to think of how amazing Web Components could be if those folks had started standardising them _now_ instead of in "competition" with userland component libraries of the time (while punting on many of the essential challenges of developing UI in the DOM those libraries were still evolving solutions for), and introduced more problems entirely of their own making.

        • kulahan 7 hours ago

          Too bad the problems getting solved aren't the problems that need solving. Maybe this is one of the reasons software development is such a joke of a profession.

  • mikeaskew4 a day ago

    by 2060 React Native should be up to v0.93

  • b65e8bee43c2ed0 a day ago

    there are already de facto two Reacts. by 2060, there will be five.

    • 2muchcoffeeman a day ago

      Two Reacts!?

      • o_m a day ago

        The main divide now is client side React versus Server Components usually with a node.js backend

      • exac a day ago

        As someone who doesn't use React, there is React Native (for iOS & Android), and React (and that can be server-rendered or client-rendered).

      • tcoff91 a day ago

        class components & function components.

        • afiori a day ago

          That is the least interesting divide in the react community

thm 16 hours ago

Okay, your turn, script.aculo.us & Mootools.

giancarlostoro 14 hours ago

Much like I am sure anyone else who started doing web dev in the 2000s and 2010s before SPA frameworks were as prevalent I learned web development scripting with jQuery and I am happy to see its still around. Theres so many things I built on top of jQuery in those early years that likely still work. Kudos to the team.

senfiaj 20 hours ago

jQuery was very useful when many features were missing or not consistent/standardized between browsers. Nowadays, JS / DOM API is very rich, mature and standardized. So, jQuery is not as necessary as it was before.

https://youmightnotneedjquery.com/

Yes, sometimes the vanilla JS analogs are not the most elegant, but the vast majority are not terribly complicated either.

IMHO, another advantage of vanilla JS (aside from saving ~30KB) is potentially easier debugging. For example, I could find / debug the event listeners using the dev tools more easily when they were implemented via vanilla JS, since for complicated event listeners I had to step through a lot of jQuery code.

ttoinou 21 hours ago

I love jQuery and it’s elegant methods chaining over object / array of DOM elements you keep in the chain.

15+ years ago I wrote a tutorial for french people about using jQuery, it got a lot of views. I hope it helped spread jQuery.

rationably a day ago

Unbelievably, still supports IE 11 which is scheduled to be deprecated in jQuery 5.0

  • indolering a day ago

    It looks like it was done to not delay the 4.0 release. Since they follow semvar, that means it won't get the axe until 5.0 [1]. Pretty wild considering that 3.0 was released 10 years ago.

    But maybe they will scope this one better: they were talking about getting 4.0 released in 2020 back in 2019!

    [1]: https://github.com/jquery/jquery/pull/5077 [2]: https://github.com/jquery/jquery/issues/4299

  • tartoran a day ago

    Backwards compatibility. Apparently there are still some people stuck on IE11. It's nice that jQuery still supports those users and the products that they are still running.

    • kstrauser a day ago

      This is the part that I find the strangest:

      > We also dropped support for other very old browsers, including Edge Legacy, iOS versions earlier than the last 3, Firefox versions earlier than the last 2 (aside from Firefox ESR), and Android Browser.

      Safari from iOS 16, released in 2022, is more modern in every conceivable way than MSIE 11. I'd also bet there are more people stuck with iOS 16- than those who can only use IE 11, except maybe at companies with horrid IT departments, in which case I kind of see this as enabling them to continue to suck.

      I'd vote to rip the bandaid off. MSIE is dead tech, deader than some of the other browsers they're deprecating. Let it fade into ignomony as soon as possible.

      • sebazzz a day ago

        “Support” here probably means “we’re testing jQuery for compatibility on those web browsers” - likely Safari from iOS 16 still runs this version of jQuery just fine. However, running automated test suites or support bugfixing for those clients is a lot harder than spinning up some Microsoft-provided VM with IE11 on it.

      • layer8 18 hours ago

        There are a lot of intranet web applications that require IE, and IE is still in support by Microsoft. Even on Windows 11 Edge still has IE Mode for that reason. IPhones stuck on older iOS version by definition aren’t supported by Apple anymore.

        • kstrauser 16 hours ago

          Use those browsers for the internal undead apps, but a modern browser for the Internet.

          Those phones are still supported. The most recent iOS 16 update was in September 2025.

      • croes a day ago

        It’s rarely a horrid IT department but some special or legacy software without modern replacement

        • voxic11 18 hours ago

          But is this horrid legacy software really going to be pulling in a new major version of jQuery?

      • troupo a day ago

        > Safari from iOS 16, released in 2022, is more modern in every conceivable way than MSIE 11.

        There are likely millions if not tens of millions of computers still running MSIE11. There are likely to be no devices running iOS 16

        • Strom a day ago

          > There are likely to be no devices running iOS 16

          My iPhone X is stuck on iOS 16 with no way to upgrade.

          However, the phone is still working well. Despite being in daily use for 8 years it still has 81% battery capacity, has never been dropped, has a great OLED screen, can record 4K@60 video. It is far more responsive than a brand new 2025 $200 Android phone from e.g. Xiaomi. It still gets security patches from Apple. The only real shortcoming compared to a modern iPhone is the low light camera performance. That and some app developers don't support iOS 16 anymore, so e.g. I can't use the ChatGPT app and have to use it via the browser, but the Gemini app works fine.

        • kstrauser a day ago

          According to Cloudflare, there are almost no users still on MSIE of any version.[0]

          Statcounter says there are about 4.6% of iOS users still on iOS 16.[1]

          My gut instinct is that there are multiple times more people using iOS 16 today than MSIE of any version.

          [0] https://radar.cloudflare.com/reports/browser-market-share-20...

          [1] https://gs.statcounter.com/os-version-market-share/ios/mobil...

          • pmontra 21 hours ago

            I visited a distillery in 2020. Their machines were managed by HP laptops running Windows XP. Those machines and those laptops and that Windows XP are probably still there with their old IE browser.

            • mortenjorck 11 hours ago

              They will probably be there for as long as the capacitors last, but the critical thing is that they are almost certainly running some Win32 industrial process software with no need for web browsers or for that matter even Internet connectivity. In fact I hope they’re not on wifi given the state of legacy WinXP security!

            • SchemaLoad 10 hours ago

              Those machines are probably not connected to the internet.

            • wqweto 13 hours ago

              XP support IE8 max

          • troupo a day ago

            IIRC public counters tend to miss corporate networks.

    • phinnaeus a day ago

      Are those people/products upgrading jQuery though?

    • jbullock35 a day ago

      Who is still stuck on IE 11---and why?

      • flomo a day ago

        There are some really retrograde government and bigcorps, running ten year old infrastructure. And if that is your customer-base? You do it. Plus I worked on a consumer launch site for something you might remember, and we got the late requirement for IE7 support, because that's what the executives in Japan had. No customers cared, but yeah it worked in IE7.

      • epolanski 15 hours ago

        One of my clients in the past had, as of 2020, noticeable traffic from IE8, 9 and IE11. When I say noticeable I mean 10%+ out of million users.

        It followed the 8-17 monday-friday pattern.

        Essentially it was people at their work machines (posts, banks, etc) running corporate computers where modern browsers were not installed.

        We had a computer for manually testing every release on IE8 and 9.

        If somebody is looking for our products from those computers, we aren't gonna lose them.

        But as far as I know, that client dropped support for IE8 and IE9 in 2024 with IE11 planned to be dropped this year.

      • ejmatta a day ago

        Some corporate machines still run XP. Why upgrade what works?

      • ddtaylor a day ago

        I think anything still using ActiveX like stuff or "native" things. Sure, it should all be dead and gone, but some might not be and there is no path forward with any of that AFAIK.

      • simondotau a day ago

        Surely by this point someone has written a 0-day for MSIE 11 which gets root and silently installs an Internet Explorer skinned Chromium. If not, someone should get onto that. —Signed, everyone

  • layer8 19 hours ago

    Microsoft will support IE 11 until 2032 in Windows 10 LTSC and IE Mode in Edge on Windows 11.

  • ulrischa a day ago

    Not everybody in the world can use modern hard- and software. There are tons of school computer labs running old software

    • halapro a day ago

      Yes, run jQuery 3.

      Crazy to think that software running inside IE11 should use the latest version of a library.

erichanson 6 hours ago

I love jQuery syntax. It's still way tigheter than standards-based stuff, never understood all the crapping on it.

NetOpWibby a day ago

I remember being scared of jQuery and then being scared of vanilla JS. My, how time flies.

Incredible it's still being maintained.

ulrischa a day ago

I still love the simplicity a ajax call can be done in Jquery

  • niek_pas a day ago

    What does jQuery provide that the Fetch API doesn’t?

    • sethaurus 19 hours ago

      Upload progress. The Fetch API offers no way observe and display progress when uploading a file (or making any large request). jQuery makes this possible via the `xhr` callback.

thr0waway001 11 hours ago

Good ol' jQuery.

Thank you for everything you've done for us.

hypnot a day ago

It's amazing how much jQuery is still used today. Even on modern websites you can often find it included (browser devtools -> jQuery in the console, and see). And not just on hobbyist sites, but on serious company websites and their web tools as well.

  • KellyCriterion a day ago

    Curious:

    Whats the current behemoth instead of JQ?

    I perceive it as still being the de-facto standard?

    • croes a day ago

      Many things JQ introduced are browser native now.

      • bonzini 20 hours ago

        Or can be replaced by other technologies, like CSS animations that replace jQuery animation code with just addClass/removeClass.

goykasi 16 hours ago

Ive never been a frontend guy, although I was a heavy user of jquery when I needed it. But I cant help but stick to my roots.... LONG LIVE PROTOYPE!

  • ethagnawl 7 hours ago

    Prototype was great when it first landed but I found jQuery to be so much more elegant and fluid. For example, the overloaded $(...) which I'm pretty certain we have to thank for querySelectorAll.

maxpert a day ago

jQuery is the last time I felt a library doing magic! Nothing has matched the feelings since then.

  • Minor49er a day ago

    Not even modern vanilla JavaScript?

    • marticode a day ago

      It's fairly close now but so much more verbose: ie document.getElementById('theID') vs $('#theID')

      • majewsky a day ago

        Nearly every time I write something in JavaScript, the first line is const $ = (selector) => document.querySelector(selector). I do not have jQuery nostalgia as much as many others here, but that particular shorthand is very useful.

        For extra flavor, const $$ = (selector) => document.querySelectorAll(selector) on top.

        • SahAssar 19 hours ago

              const $$ = (selector) => Array.from(document.querySelectorAll(selector))
          
          is even nicer since then you can do things like

              $$('.myclass').map(e => stuff)
pocketarc 20 hours ago

> includes some breaking changes

Most of the changes are completely reasonable - a lot are internal cleanup that would require no code changes on the user side, dropping older browsers, etc.

But the fact that there are breaking API changes is the most surprising thing to me. Projects that still use jQuery are going to be mostly legacy projects (I myself have several lying around). Breaking changes means more of an upgrade hassle on something that's already not worth much of an upgrade hassle to begin with. Removing things like `jQuery.isArray` serve only to make the upgrade path harder - the internal jQuery function code could literally just be `Array.isArray`, but at least then you wouldn't be breaking jQuery users' existing code.

At some point in the life of projects like these, I feel like they should accept their place in history and stop themselves breaking compatibility with any of the countless thousands (millions!) of their users' projects. Just be a good clean library that one can keep using without having to think about it forever and ever.

  • wartijn_ 20 hours ago

    I don’t understand your use case. If you’ve got legacy projects that you don’t want to touch, why upgrade a dependency to a new major version? You can keep using jquery without having to think about it. Just keep using version 3.7 and don’t even think about version 4.

    • Zardoz84 16 hours ago

      To fix vulnerabilities?

      I recently had to upgrade from jQuery 2 to the latest version, because an client demanded it (security issues), and just ran into compatibility issues with third party libs/plugins.

shevy-java a day ago

I am still using jQuery.

t1234s 11 hours ago

If you are using server side rendering is jQuery or native JS all you need or is is still worth looking into more complicated JS frontends?

  • augusto-moura 11 hours ago

    htmlx[1] is the library for ssr nowadays, and TBH, pretty good option. It removes JS completely from the equation most of the time

    [1]: https://htmx.org/

    • 101008 11 hours ago

      Yes, my default to go now is Django + Tailwind with HTMX and celery for background tasks. That alone took me far away.

zghst 12 hours ago

I feel so old. jQuery was hate/ok early in my career, as I started on the tail end of HTML5/in the middle of ES6 with all the new stuff.

indolering a day ago

I love that they support ES6 modules, Trusted Types, and CSP! The clearing out of old APIs that have platform replacements is nice to see too!

MarkdownConvert a day ago

Long-time user here. It served me well for years, though I haven't really touched it since the 3.0 days. Glad to see it's still being maintained.

Pikamander2 19 hours ago

That changelog is wild; it closes out dozens of issues that have been open on Github for 5+ years. I assume that's related to this being the first new major version in years.

Has anyone done any benchmarks yet to see how jQuery 4 compares to jQuery 3.7?

bikamonki 19 hours ago

For us that started doing web apps as soon as the web was invented, JQ was a miracle.

Thanks guys!

padjo 20 hours ago

That bit about focus event order gave me flashbacks and raised my heart rate by a couple of bpm. Had some bad times with that ~15 years ago!

madduci a day ago

This is huge. jQuery is still my way to go for any website requiring some custom interaction that isn't available in vanilla js.

  • nchmy 19 hours ago

    What isn't available in vanilla js?

    • ethagnawl 7 hours ago

      I think it's probably a matter of things being easier: show()/hide() or simple animations versus futzing with style properties and CSS animations.

g947o 20 hours ago

I thought this would include more drastic changes, but it seems that this is more house cleaning stuff, like, "nobody should really be using this in 2026". They are providing a library for someone who really likes jQuery and wants to use it over something like React. (Which is completely fine and reasonable.)

Looks like the core behavior doesn't change, something that people complain about, e.g. https://github.blog/engineering/engineering-principles/remov...

> This syntax is simple to write, but to our standards, doesn’t communicate intent really well. Did the author expect one or more js-widget elements on this page? Also, if we update our page markup and accidentally leave out the js-widget classname, will an exception in the browser inform us that something went wrong? By default, jQuery silently skips the whole expresion when nothing matched the initial selector; but to us, such behavior was a bug rather than a feature.

I completely agree with this, because I have been bitten so many times by this from subtle bugs. However I can see some other people not caring about any of it.

I already know that I am definitely not going to use jQuery in my personal projects, and there is no chance that my workspace does. (I much prefer letting a framework handle rendering for me based on data binding.) So none of that concerns me. But good luck to jQuery and anyone who sticks with it.

yread a day ago

Hmm maybe i can finally move on from 2.x

alphax314 17 hours ago

Amazing oss library, glad its still being maintained!

  • hk1337 16 hours ago

    Meh. I was a Mootools connoisseur back in the day and saddened how jQuery became more popular.

    I’m glad JavaScript has evolved to the point we don’t need jQuery anymore.

johanyc a day ago

is there any reason to use jquery if you've never used it before

  • modarts 21 hours ago

    Don’t let all of the old heads glazing jquery in this thread confuse you - they’re just nostalgic. There’s no reason to even think of using jquery in 2026

  • thunderfork 10 hours ago

    Generally speaking, no, since a lot of what it does is now available natively, the odds that you'll need something from it are much lower.

    There's probably some corner-case stuff it still makes easier if you're not using some framework, but I don't think there's a reason to go out of your way to use it just for the sake of using it.

nashashmi 19 hours ago

I wish it also included support for XPath Query.

admiralrohan 20 hours ago

What is the usecase for this in the age of React, NextJS? And for static sites we have Astro etc. And even if you need something simple why use jQuery? Vanila JS has better API now. Am I missing anything?

  • temporallobe 20 hours ago

    I do a lot of custom JS widget development, games, and utilities that are outside the context of a gigantic framework like React. Not everything is a a full-page SPA. Vanilla JS is indeed better than it was, but I found myself writing small JQ-like libraries and utilities to do tedious or even basic DOM manipulation, so I switched back to JQ and saved myself a lot of time and headaches. Compressed, minified JQ is also pretty small and is negligible in space consumption.

    JQ is also used in frameworks like Bootstrap (although I think they’re trying to drop third-party dependencies like this since they tend to cause conflicts).

    I have also used JQ in an Angular app where complex on-the-fly DOM manipulation just isn’t practical with standard tooling.

  • hotgeart 20 hours ago

    Hobbyists don’t want to learn every new framework. Someone can have a small business website for their activity and have been happy using jQuery since 2010.

rtbruhan00 a day ago

It’s refreshing to see jQuery 4

thrownaway561 11 hours ago

Congrats on shipping!!!! It's been a long time since I've written any jQuery but I remember how wonderful it was to work with in the age of browser inconstancies. Thank you EJohn and the team for continuing the project.

kordlessagain 15 hours ago

Wow. Great job.

netbioserror a day ago

I was surprised that for most of my smaller use cases, Zepto.js was a drop-in replacement that worked well. I do need to try the jQuery slim builds, I've never explored that.

  • NetOpWibby a day ago

    Zepto! That's a name I haven't heard in years. I don't remember how it happened but I'm still a member of the ZeptoJS org on Github.

    • indolering a day ago

      I really like that project! Why don't y'all hand it over to someone willing to do maintenance or at least archive it?

sodafountan 14 hours ago

Wow, this is interesting to see. I thought jQuery was dead.

My next question would be, is this something that OpenAI and Anthropic would train their data on? If I ask Claude Code to write an app and utilize jQuery, would it resolve to the previous version until it's retrained in a newer model?

nprateem 16 hours ago

What's jquery? I only use dynamic drive for my DHTML

AdrianB1 21 hours ago

I used jQuery for the past ~ 10 years on smaller apps and I had no problems with it. Then I slowly replaced it with modern JS wherever possible and I found that today I am using jQuery only because Datatables.js depends on it.

It was a nice ride, many thanks to the people that worked and still work on it. Not sure we'll ever see a jQuery 5, but that's life.

recursivedoubts 15 hours ago

hail to the king

kordlessagain 15 hours ago

Now what we need is realtime log forwarding from js to the llm.

fourseventy 14 hours ago

Now that's a name i've not heard in a long time...

tpoacher a day ago

still needs more jQuery

tonijn a day ago

No love for $…?

gocsjess a day ago

jQuery is v4 now, but a lot of sites esp. wordpress still have 1.11 or 1.12 and only uses them to either doing modals(popover), show/hide(display), or ajax(fetch).

  • nchmy a day ago

    WordPress ships with 3.x and is already looking to update to 4

    • gocsjess 18 hours ago

      I was talking about a lot of sites in wordpress, not Wordpress themselves

      • nchmy 6 hours ago

        If people haven't updated their sites in 10+ years, that's their problem. Has nothing to do with wordpress or jQuery

maxloh a day ago

Even after migrating to ES modules, jQuery is still somewhat bloated. It is 27 kB (minified + gzipped) [0]. In comparison, Preact is only 4.7 kB [1].

[0]: https://bundlephobia.com/package/jquery@4.0.0

[1]: https://bundlephobia.com/package/preact@10.28.2

  • topspin a day ago

    > Preact is only 4.7 kB

    Is there some outlier place where people using virtual DOM frameworks don't also include 100-200kb of "ecosystem" in addition to the framework?

    I suppose anything is possible, but I've never actually seen it. I have seen jQuery only sites. You get a lot for ~27kB.

    • ttoinou 21 hours ago

      Look at Deno + Fresh which is based on preact. You can do a lot with preact only

    • downsplat a day ago

      I do that when I need to make a simple SPA. Plain Vue plus a few tiny add-ons of my own.

    • leptons 10 hours ago

      I use Preact for a very lean build for a front-end that lives in a small embedded MCU flash ROM. Gziped the whole front-end is about 25KB, including SVG images baked-in to the preact gzip file. I'm very careful about the libraries I include and their impact on the overall payload size.

      I had started with a simple front-end that was using jQuery to quickly prototype the device controls, but quickly exceeded my goal of keeping the front-end at under 40KB total gzipped. The problem is needing more than just jQuery, we also needed jQueryUI to help with the front-end, or build out similar complex components ourselves. And as soon as the jQuery code became non-trivial, it was clear that Preact made much more sense to use. Our payload is quite a bit smaller yhan the jQuery prototype was.

  • onion2k a day ago

    jQuery does a lot more though, and includes support older browsers.

    • ZeroAurora a day ago

      Officially they state they only support 2 latest versions of chrome. But considering their support of IE11, that's actually a lot.

    • halapro a day ago

      > includes support older browsers

      Which is entirely the issue. Supporting a browser for the 10 users who will update jQuery in 2025 is insane.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection