11
Bassman: I guess that I took the opposite view. IMO the IE team will NEVER fix rendering issues with IE unless web developers put pressure on them. If we ignore those features exist because of lack of support, then we will get our wish, they will never exist. The same goes for PNG transparency, child selectors, absolute positioning, or any other not supported feature in IE.
Sorry; rant over.
Raghost: to change the class of another object, you would need to make some adjustments to the supplied code.
In general you would first need to get a reference to your element, then change its className property. The easiest way to retrieve a reference to your element is to add an 'id' attribute to it:
<td class="class3">
becomes:
<td class="class3" [color=008000][b]id="mycol"[/b][/color]>
next, on the element that should trigger the hover change:
<td onmouseover="var e=xoopsGetElementById('[color=008000][b]mycol[/b][/color]');e.className='class1';" onmouseout="var e=xoopsGetElementById('[color=008000][b]mycol[/b][/color]');e.className='class3';">