You Don't Need jQuery (anymore)
A lot of web developers rely on jQuery. In many circles, jQuery and JavaScript are one in the same it seems. So, why shouldn’t you use it? Why should you stop using it? Don’t you just need it?
jQuery makes...
Free yourself from the chains of jQuery by embracing and understanding the modern Web API and discovering various directed libraries to help you fill in the gaps.
A lot of web developers rely on jQuery. In many circles, jQuery and JavaScript are one in the same it seems. So, why shouldn’t you use it? Why should you stop using it? Don’t you just need it?
jQuery makes...
How many times have you seen a web app or library that uses jQuery simply to perform trivial element selection? How many times have you written this: $(#myElement')
? Or this: $('.myElement')
? Psst… you don’t need jQuery to select...
We previously learned how to easily select elements without relying on jQuery. but what about changing elements? What about creating new elements? How about relocating elements elsewhere on the page? You may be glad to know that all of...
Many developers who learned web development through a jQuery lens probably think that jQuery is doing something magical when you invoke the $.ajax
method. That couldn’t be further from the truth. All of the heavy lifting is done by...
In this fifth installment of “You Don’t Need jQuery (anymore)”, I’m going to talk about dealing with events in the browser without jQuery. As always, each section will cover the jQuery approach, followed by a solution using the native Web...
In the sixth and final post of this series, I’m going to cover some of the utility methods that jQuery core provides, and show how you can acheive the same results with vanilla JavaScript. Focus will be on modern browsers,...
You asked for more, and I was happy to oblige, because this blog only scratches the surface. On Twitter, and in the discussion sections here, I mentioned that a longer-form version of my YDNjQ...