Hacker News new | ask | show | jobs
by seba_dos1 2689 days ago
It's 2019, most of the stuff that jQuery used to handle is now included in the browser API. For instance, to have "AJAX", simply try window.fetch instead of $.get.
1 comments

Then add a polyfill per api call to support anything but the most recent browsers, if you happen to want your site useable by people with old systems or who are at work.
...which you can selectively serve only to the old browsers :)
That sounds trivial.