Archive for January, 2006

Joshua

Saturday, January 28th, 2006

Let me start by admitting to how wrong I was about not being able to introspect on functions in Javascript. Why didn’t anybody tell me? It turns out that using Prototype’s $H function strips out function properties from an object. I suppose that makes sense, so now I get object properties the old-fashioned way with […]

Interactive Javascript Console

Monday, January 23rd, 2006

JS/UIX inpsired me to finally make a Javascript console that’s better than alert(eval(prompt(”Console”))), so I made this interactive Javascript console.
Apparently FireBug came out and is really awesome, and it is, but I wanted a more texty way to debug my Javascript. That basically requires tab-completion, which I have, but I realized that I can’t […]