vote up 1 vote down star
2

Hello, I'm trying to reduce my 'onmouseover' event listeners in my table (in which I highlight rows on hover). I want to do this by attaching an event listener to the entire table instead of each <tr> (that's how I have it now). The reason is that IE is reacting very slow and the only answer I found to this was to reduce the number of event listeners.

Sample code:

<table id="myTable">
   <tr>
     <td>Somedata</td>
   </tr>
   <tr>
     <td>Somedata 2</td>
   </tr>
   <tr>
     <td>Somedata 3</td>
   </tr>       
</table>

In this scenario, if I hover over the second <tr>, I understand that the "onmouseover" event bubbles from tr to the table.

How could I find out in my jQuery $('#myTable').mouseover event which tr was hovered and change its css class?

Edit: The idea for this comes from this SO question (but unfortunately no source code in the answer): Speeding Up Multiple OnMouseOver Events in IE

flag

68% accept rate

2 Answers

vote up 4 vote down check

It's called event delegation.

You're using jQuery which makes it trivial to find the triggering <tr> element of the event, via closest:

$('#myTable').mouseover(function(event) {
    var tr = $(event.target).closest('tr');
    // do something with the <tr> element...
})

closest was in fact written to support event delegation like this. It's what live() uses internally.

link|flag
What is the "e" parameter used for? Is it necessary & what does it represent? – Alex Sep 23 at 7:20
@Alex: the e parameter is the event object generated by the mouseover. Every user action generates one of these events. See quirksmode.org/js/events_properties.html/… – Crescent Fresh Sep 23 at 10:19
@Alex: ps I've edited the answer to use a better var name than "e" ;) – Crescent Fresh Sep 23 at 10:19
vote up 0 vote down

You can attach the mouseover event to the table but every time you mouseover any child element of the table that fuction will fire.

$('#myTable').mouseover(function(e) {
  $(e.target).parents('tr');
});

That will get you the tr of element that was hovered.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.