Stay looped in
Links
-
Recent Comments
- Iterative Design | The Apprentice Path said [...] Behind the Screens: the Making of Campaign M...
- natlee75 said I’ve found that the easiest way to explain w...
- natlee75 said Actually we’d get a type error since the `fn...
- Samy Al Bahra said Hi Sam, Apologies for the late response. Our syste...
- Steph said Reading a lot of different explanations definitely...
Archives by Month
Categories
Category Archives: Javascript
Easy Web Forms With Knockout JS
I am always interested to learn about new technologies and frameworks, especially ones that make my UI work easier. The other day while researching new javascript frameworks, I stumbled across Knockout JS. There has been a large buzz around this … Continue reading
Understanding Javascript’s “this” Keyword
Here’s how I explain this to people: this is a variable. It points to the object which is applied to the function. There’s nothing innately magical, scary, or confusing about this — it’s a feature, after all. I’m going to … Continue reading
Webkit (Chrome, Safari) console.log is broken.
Chrome and Safari have a pretty serious bug where console.log() does not log variables as they are at the time of calling console.log(), but rather as they are some time in the future. If you’re not aware of it, you … Continue reading