As a JavaScript developer, you will eventually find yourself debugging code someone else wrote.ย Unit tests only cover so much and most tests are written in an isolated environment.ย The truth in JS is when an application is running.
When using third-party libraries and code you havenโt written (legacy code), it is useful to be able to figure out whatโs going on before implementing a new feature or fixing buggy code.
Read more โ
Read more โ
I made this Backbone.js app a while ago.ย Itโs using straight Backbone and a lazy Bootstrap theme.ย Iโm not too proud of it being in a half-done state, but it has potential.ย An Angular.js conversion would be pretty interesting.
Check it out here!
Read more โ
Angular’s Directive API is fairly robust! Let’s take a look at some fun and interesting approaches we can take with directives. Comments, classes, elements, and attributes - there’s a whole world of crazy things you can do with Angular.JS and HTML!
Read more โ
One-shot event handlers are a very useful tool to have in your Javascript/jQuery toolbelt. In this post, we will see how to effectively add a bit of UI interactivity into our pages and applications using one-Shot event handlers to create a jQuery dropdown login menu.
Program Flow: Anonymously invoke a Menu constructor function Attach event handlers for #trigger button & the hidden , setting an initial state for the drop-down form EVENTS: click #trigger button:
Read more โ