Re: [WSG] tr onmouseover or class:hover

2005-06-06 Thread Vaska . WSG
Thanks, that's exactly what I was searching for (the explanation). Thanks, thanks, thanks. ;) On Jun 6, 2005, at 5:36 PM, Steven Ametjan wrote: Unfortunately, IE only reads the :hover psuedo-class on elements. The use of javascript can circumvent this. Ideally though, you should not embed

Re: [WSG] tr onmouseover or class:hover

2005-06-06 Thread Steven Ametjan
Unfortunately, IE only reads the :hover psuedo-class on elements. The use of javascript can circumvent this. Ideally though, you should not embed the onmouseover, onmouseout events directly in the markup, but use a javascript that will process the table and input the :hover functionality. If you l

RE: [WSG] tr onmouseover or class:hover

2005-06-06 Thread Alex James
Vaska wrote: > I know I've read somewhere in the past that if you want to change the > color of a table row TR I need to use: > > class='transparent' onmouseover="this.className='over';" > onmouseout="this.className='transparent';" > Have you read these articles?: http://www.alistapart