Recent Reading (HTML5, CSS Fonts, JavaScript, rel=nofollow, Google Analytics)

New elements in HTML 5 An older (2007) article, but still pretty interesting. I’ve been slowing working my way through some HTML5 stuff. This was part of that effort. If, like me, you’re fascinated by where the web is going*, you should definitely check the article out. Event Tracking Guide With event tracking open to […]

Tom Okeefe, Interviewed at Fireworks Designer

My good friend Tom Okeefe was interviewed over at Fireworks Designer (yes, he worked Spymaster into the interview) Where do you work and what keeps you busy? When I’m not at Langley training for my next mission I’ve been working at my studio on interactive design, application visual design, mobile phone apps, user interface, logos […]

I Think I’m Going to Start Dreaming in WordPress

Between home (getting this place into shape and looking forward to my personal site redesign), freelance (helping out with Tom’s blog once again) and work (three separate, concurrent, WP projects) I think I’m going to a bit mental with WordPress. Good mental. Hacker mental. But mental nonetheless. Why mental? It’s rare for me to do […]

On My Radar This Week- Cufon, Event Tracking, Steve Souders’ New Book

The following is a handy list of the things I’m currently thinking about and/or working with as well as a few things that are coming up around the bend. I’ll do this kind of thing from time to time. Mental housekeeping. One with it.

A JavaScript Curiosity Regarding addEventListener

I’m wondering why this code fails to stop a form submission document.forms[0].addEventListener(“submit”,falsify, false); function falsify() { return false; } and this code successfully kills it? document.forms[1].onsubmit = falsify; function falsify() { return false; } Try it out (Firefox/Safari/Chrome/Opera only- there’s no addEventListener support in Internet Explorer). The form action on both is an alert. The […]