PDA

View Full Version : TableHover plugin not working on FF


mistersmith307820
04-25-2011, 09:22 AM
Hello,
*not WA related*
I am using the tablehover plugin on a dynamically populated price list.
It is working on IE, Safari, and Opera but not FF.
I just want the prices to turn white on rollover
The plugin is old ('07) but I did not find anything newer when I was searching.

Any help would be amazing, as I am over my head on this one...

thanks!

links:
http://beads.donovansmithdesign.com/prices/printing-prices.php

http://beads.donovansmithdesign.com/js/jquery.tablehover.js

ijs174940
04-28-2011, 04:30 AM
Would it not be easier to add a class to the table row and add a bit of css like this

<style type="text/css">
.roweffect {
color: #999;
}
.roweffect:hover {
cursor: default;
cursor: pointer;
color: #FFF;
}
</style>

Very simple but effective and cross browser compatible, I have also added the cursor option but you could always remove that if required.

mistersmith307820
04-30-2011, 09:45 AM
Thanks a million!

MUCH better solution!

ijs174940
05-01-2011, 07:13 AM
np matey your welcome.