Can I replace a jQuery.load() one-liner with an equivalent fetch() call? – Jquery ajax
I have a page that uses the jQuery one liner $('#id').load('/url'); to load a fragment into the DOM at a specific place. If I want to remove the dependency on jQuery, is there an easy alternative way to do this…