Archive for the 'javascript' Category

Review of “Object-Oriented JavaScript”

October 25th, 2008

I recently read Object Oriented JavaScript, by Stoyan Stefanov. In reviewing it, I found it was one of the most interesting books I’ve read in a while, for some good reasons and a few more curious reasons.


Getting a button element’s value attribute (not innerHTML) in IE

May 23rd, 2008

After spending a small part of my evening debugging Javascript in IE (which is ALWAYS a pleasure), I found out one of my errors was a mistake I had made before… trying to access button.value in IE.  IE, of course, being IE, returns the innerHTML value of the button, instead of the value attribute.  Last [...]


Big release day on the webbernet

March 5th, 2008

So I guess it’s simply the time of year. Many big releases today… software, APIs, and more!
First, the biggest. IE8 has been released in initial beta. The release was also included a general overview of IE8’s new features and fixes. It’s actually quite a lot of information to absorb all at [...]


Writing Scheme in Javascript I

February 10th, 2008

This is an interesting little function that I ran across in Kent Dybvig’s The Scheme Programming Language. I thought I would give it a go in javascript. I wrote it out, and ran into two problems. First, I wasn’t returning anything from the anonymous-self-executing function, so it was being garbage collected, and [...]


Extreme early review of Advanced DOM Scripting

August 22nd, 2007

Started reading through Advanced DOM Scripting by Jeffrey Sambells. Normally would wait to comment until I got to the end, but I am excited that he mentioned both the scope chain and closures in the first chapter! As my sister would say, “Sweet Lovin!”