Go to http://localhost:8080/blablalist.lzx?lzr=dhtml and mouseover the "Forgot password" text. At mouseout, the bgcolor is set to null, this doesn't work in IE. The code is in web/components/navigtext.lzx line 26.
Description
Go to http://localhost:8080/blablalist.lzx?lzr=dhtml and mouseover the "Forgot password" text. At mouseout, the bgcolor is set to null, this doesn't work in IE. The code is in web/components/navigtext.lzx line 26.
<canvas>
<class name="navigtext" extends="text"
onmouseover="this.highlight()"
onmouseout="this.normal()">
<method name="highlight">
setAttribute('bgcolor', 0xf34219);
</method>
<method name="normal">
setAttribute('bgcolor', null);
</method>
</class>
<navigtext>Hey there!</navigtext>
</canvas>