August 30, 2000 - Coloring the Scrollbar's Dark Shadows
August 30, 2000 Coloring the Scrollbar's Dark Shadows Tips: August 2000
Yehuda Shiran, Ph.D.
|
object.style.scrollbarDarkShadowColor = vColor;
where vColor
is a color name or an RGB value.
The following TEXTAREA
demonstrates the scrollbarDarkShadowColor
property (works only in IE 5.5 and up). Click one of the two links to the right of the window, and color the dark shadows either red or green:
red dark shadows green dark shadows
Here is how we defined the aboveTEXTAREA
and links:
<TEXTAREA ID="longWord" ROWS="5">
Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long
Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line
Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long
Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line Long Line
Long Line
</TEXTAREA>
<A HREF="javascript:void(longWord.style.scrollbarDarkShadowColor='red')"><FONT COLOR="red">red dark shadows</FONT></A>
<A HREF="javascript:void(longWord.style.scrollbarDarkShadowColor='green')"><FONT COLOR="green">green dark shadows</FONT></A>
Notice the usage of void()
above. It is necessary to avoid overwriting of the page with the return value from the javascript:
call, which is the property assignment value (red
or green
).