O’Reilly Velocity Conference – Amsterdam

My favorite front-end conference has always been O'Reilly's Velocity Conference because the conference series has focused on one of the most undervalued parts of client side coding: speed. So often we're so excited that our JavaScript works that we forget that speed, efficiency, and performance are just as important.
The next Velocity event is coming up in Amsterdam, October 28-30. The best code speed conference is coming to one of the best cities in the world. Exciting stuff but what's better than a David Walsh Blog discount?!
20% Discount with 20DWalsh
Registration for Velocity Amsterdam is open! Register early for the best price on tickets and reserve your spot to learn all about web performance, DevOps, continuous delivery and more. Use code 20DWALSH
to save 20% in addition to best price!
![CSS Animations Between Media Queries]()
CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during...
![Write Better JavaScript with Promises]()
You've probably heard the talk around the water cooler about how promises are the future. All of the cool kids are using them, but you don't see what makes them so special. Can't you just use a callback? What's the big deal? In this article, we'll...
![Dijit’s TabContainer Layout: Easy Tabbed Content]()
One of Dojo's major advantages over other JavaScript toolkits is its Dijit library. Dijit is a UI framework comprised of JavaScript widget classes, CSS files, and HTML templates. One very useful layout class is the TabContainer. TabContainer allows you to quickly create a tabbed content...
![Send Email Notifications for Broken Images Using MooTools AJAX]()
One of the little known JavaScript events is the image onError event. This event is triggered when an image 404's out because it doesn't exist. Broken images can make your website look unprofessional and it's important to fix broken images as soon as possible.