Wednesday, June 16, 2004
Rhino, you kill me.
So the hacked up Rhino included in Cocoon doesn't allow you to access the variable `this' inside of an eval() command.
Therefore, one has to do
(Sidenote: In IE,
Therefore, one has to do
var me = this;
and then refer to me
, not this
. Kind of a silly eccentricity, no? And sadly, this = this;
isn't a valid assignment -- that'd be a beautiful kludge, though.
(Sidenote: In IE,
aCertainDiv.innerHTML += "";
fixes a layout bug. God, I love software.)