[jQuery] Re: Highlight table row

2009-04-15 Thread spstieng
Nope, that didn't help :( Steven On 15 Apr, 00:18, James james.gp@gmail.com wrote: This does ahighlighton mouseover and removehighlighton mouseout. Is this what you want? // untested $(#storeListTable tbody tr).hover(      function() {  // mouseover          

[jQuery] Re: Highlight table row

2009-04-14 Thread James
This does a highlight on mouseover and remove highlight on mouseout. Is this what you want? // untested $(#storeListTable tbody tr).hover( function() { // mouseover $(this).addClass('highlight'); }, function() { // mouseout $(this).removeClass('highlight');

[jQuery] Re: Highlight Table Row with Animate

2008-06-27 Thread briandichiara
That was exactly what I was looking for. Thanks for the quick response and easy to follow information. On Jun 20, 1:52 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Color animations are not in core jQuery but are in jQuery UI Effects. If color animations is all you want (from UI Effects), you

[jQuery] Re: Highlight Table Row with Animate

2008-06-20 Thread Richard D. Worth
Color animations are not in core jQuery but are in jQuery UI Effects. If color animations is all you want (from UI Effects), you just need one file: effects.core.js, which you can get from the UI download build page: http://ui.jquery.com/download_builder/ (select Effects Core) or directly here: