Skip to main content
Category

Coding Techniques

Calgary Web DesignCoding Techniques
August 12, 2011

17 HTML5 Tips and Techniques

  The HTML5 revolution is moving fast and more and more browsers are taking full advantage of the great new features. We finally at a time where us developers can safely make the switch so here are some of the basic but powerful new features that HTML5 has to offer and tips and techniques to help along the way. 1.…
Coding TechniquesWeb Design
July 27, 2011

Handy JavaScript Shorthand Techniques

Here some great shorthand techniques that are valuable for any Javascript based developer. These will save both time and space - keeping your code clean and whitespace to a minimum. 1. Shorthand - Null, Undefined, "" Checks A common scenerio for developers is to check if the variable you are referencing is null or undefined. Longhand: if (variable1 !== null…