Category Archives: Blog

Defensive HTML and CSS

When it comes to rendering on somebody else’s DOM, you can’t naively write HTML and CSS like you might for your own self-contained web application. You’ve got to think carefully about how preexisting CSS and JavaScript code might affect your … Continue reading

Posted in Blog | Comments Off on Defensive HTML and CSS

How to use local storage for JavaScript

Creating an to-do app is usually the first application you learn how to build in JavaScript but the problem with all those apps is that when you reload the page all those to-do’s are gone. There is a simple solution … Continue reading

Posted in Blog | Comments Off on How to use local storage for JavaScript