Archive for May, 2008

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 [...]


This is what I have been reduced to

May 12th, 2008

I found it very amusing that I wrote a javascript for loop
for( int j=0; j<checked.length; j++)
Ahh, C comes back to you at the oddest times.