Yep.. That's more or less how I did it last time. (sort of, but my
requirements had special conditions for doing things within rows
involving links and such that would make simple mouse outs not do-able
...ie it ~had~ to be actually leaving the row)
This page (from the previously referenced quirk
There's a solution that is pretty similar to how I solved this problem
described in detail on this page:
http://www.permadi.com/tutorial/cssHighlightTableRow/index.html but
you'll have to scroll to the bottom to find it. The page presents
multiple options, but it is the second to last one that yo
can you give me the URL
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
look (i think) in dean edward's site...
there's a hack adding a new behavior for IE that is supposed to emulate
hover transparently
Peter Dawn wrote:
i thought so.
my target audience as it turns out is IE. so i guess i am stuck. i
tried tr:hover but it didnt work under IE, as you have mentioned
i thought so.
my target audience as it turns out is IE. so i guess i am stuck. i
tried tr:hover but it didnt work under IE, as you have mentioned,
didnt even try it under FF.
will keep on looking though.
-
To unsubscribe, e-mai
You can'tUnless your target audience is mozilla only in which case
it's as easy as:
tr:hover { background-color: }
Most other options involve javascript and are usually extremely
painful because of the fun "quirks" involved. This may help if you go
that route: http://www.quirksmode.org/js/co
guys,
i am using tap3. i have a contrib:table implementation which is
displaying multiple row results. now i am using rowsClass to control
the CSS property of my rows.
now i wanted to implement a mouseover colour change effect over my
rows and i am not sure, how i can implement this using just C