Use the simulator to test web content in iOS. October 01, 2016 Chrome’s devtools are fantastic for quick cross-device layout checks. But there are rendering differences between Chrome and Safari - especially when it comes to Javascript. I like to check my project on my phone as… Read More
Getting Started with Webpack and Django May 12, 2016 This walkthrough is aimed at providing a starter template for weaving Webpack into your front end Django workflow. Our goal is to create a project template that allows us to keep all of our source under… Read More
Fun with CSS Sibling Selectors March 04, 2016 Sibling selectors are super helpful for applying different styles to neighboring elements in a list. And they can produce some pretty nifty effects when combined with transforms and transitions. Let's go over sibling selectors and look… Read More
Selecting Elements by Data Attributes Using Jquery March 04, 2016 Selecting elements by their data attributes is a handy feature of Jquery. But a word of caution: Using Jquery's **.data()** method to change the attribute value will only change the values in memory, and not on… Read More