Constant Evolution in JavaScript

In the beginning there was “var”. And it was kind of “there is something somewhere named this way”. It was lawless and everything could be… Read more

Similar

JavaScript Eventing Deep Dive

JavaScript event handling is often straightforward. This is especially true when dealing with a simple (relatively flat) HTML structure. Things get a bit more involved though when events are traveling (or propagating) through a hierarchy of elements. This... (more…)

Read more »

Wait for User to Stop Typing, in JavaScript

Let's say you have a search feature on your website that you want to live-update while the user types. The naive implementation would be to send a query to your server on every keystroke. This quickly falls apart, however, because users easily type faster... (more…)

Read more »