kevind schrieb:

how do get the 2 TR's to highlight together at the same time when i
float over the class 'Row' ?  Do i surround them with DIVs or SPAN?
Is this possible to group 2 table rows inside another element and get
the function to fire for both.

Give this a try:

$(function(){
  $('.Row').hover(function(){
    $(this, .AltRow).addClass('hover');
  },
  function(){
    $(this, .AltRow).removeClass('hover');
  })



--
Viele Grüße, Olaf

-----------------------------------
olaf.bo...@t-online.de
http://olaf-bosch.de/
http://ohorn.info/
http://www.akitafreund.de/
-----------------------------------

Reply via email to