The Browser Whisperer RSS Feed

How to Create a JavaScript Framework: Part 7
25 Apr 2007, 12:27:00 PM
Walking the DOM — Can I see some ID, please? At this point you should have a pretty good idea of how the plumbing is hooked up in this framework. We've examined the structure, how to launch multiple events when the page loads, how to tell when t ...
Read post

How to Create a JavaScript Framework: Part 6
24 Apr 2007, 08:29:00 AM
Iteration — When One Isn't Enough Before getting too far along, I want to introduce you to better JavaScript iterators. Since quite a bit of a developer's time is spent in cycling through DOM collections, having good iterators is important. Usua ...
Read post

How to Create a JavaScript Framework: Part 5
23 Apr 2007, 08:30:00 AM
  Object Extension — when vanilla doesn't satisfy Up to now, we have mostly seen some useful additions to the framework for event handling and browser detection. I haven't shown how the framework works for object extension. Since that was one o ...
Read post

How to Create a JavaScript Framework: Part 4
20 Apr 2007, 09:00:00 AM
Browser Detection When we launch our JavaScript before the page finishes loading, there are times when we need to do some browser sniffing. Unfortunately, even in this day and age, every browser has some bugs that hit you when you're trying to d ...
Read post