Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the following jquery code to show a contextual delete button only for table rows we are hovering with our mouse. This works but not for rows that have been added with js/ajax on the fly...

Is there a way to make this work with live events?

$("table tr").hover(
  function () {},
  function () {}
);
share|improve this question
superb question! – emaillenin Sep 15 '11 at 4:08

6 Answers

up vote 223 down vote accepted

jQuery 1.4.1 now supports "hover" for live() events, but only with one event handler function:

$("table tr").live("hover",
        function()
        {

        }
    );

Alternatively, you can provide two functions, one for mouseenter and one for mouseleave:

$("table tr").live({
        mouseenter:
           function()
           {

           },
        mouseleave:
           function()
           {

           }
       }
    );
share|improve this answer
It still does not work for me though. I tried doing this: Where am i going wrong? > $('table tr').live('hover', function() { $(this).find('.deletebutton').toggle(); }); – Shripad K Jun 6 '10 at 12:12
1  
this is incorrect and does not work. see the "Multiple Events" header under the documentation for live: api.jquery.com/live – Jason Jul 9 '10 at 19:56
32  
As of jQuery 1.4.2, .live("hover") is equivalent to .live("mouseover mouseout"), NOT .live("mouseenter mouseleave") - see bugs.jquery.com/ticket/6077 So, do .live("mouseenter mouseleave", function() {...}), or .live("mouseenter", function() {...}).live("mouseleave", function() {...}) – aem Nov 17 '10 at 20:40
2  
thank you @aem, this worked for me: $("table tr").live("mouseenter", function() {...}).live("mouseleave", function() {...}); – jackocnr May 25 '11 at 16:42
2  
As per the JQuery .live documentation page it says to use .on instead. "As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers." – johntrepreneur Jan 25 at 19:57
show 4 more comments
$('.hoverme').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    // do something on mouseover
  } else {
    // do something on mouseout
  }
});

http://api.jquery.com/live/

share|improve this answer
1  
this one worked for me, thanks – fearofawhackplanet Jul 8 '10 at 14:52
Worked for me as well. +1 Tried doing Philippe's version, both with mouseover and mouseenter - neither worked. But this one did. Thanks! – eduncan911 Aug 23 '10 at 7:30
+1 works here as well. Cheers – FFish Oct 12 '10 at 1:01
+1 worked like a charm. Thanks :) – Øyvind Knobloch-Bråthen Jun 6 '11 at 10:34
   
thanks for clean code – Minh Le Dec 16 '11 at 20:29
show 2 more comments

.live() has been deprecated as of jQuery 1.7

Use .on() instead and specify a descendant selector

http://api.jquery.com/on/

$("table").on({
  mouseenter: function(){
    $(this).addClass("inside");
  },
  mouseleave: function(){
    $(this).removeClass("inside");
  }
}, "tr");  // descendant selector
share|improve this answer
2  
this works flawlessly as of jquery 1.9. all live and delegate solutions are DEPRECATED! it would be awesome if someone could unaccept the accepted answer and accept this one instead. – jascha Mar 7 at 15:49

As of jQuery 1.4.1, the hover event works with live(). It basically just binds to the mouseenter and mouseleave events, which you can do with versions prior to 1.4.1 just as well:

$("table tr")
    .mouseenter(function() {
        // Hover starts
    })
    .mouseleave(function() {
        // Hover ends
    });

This requires two binds but works just as well.

share|improve this answer

This code works:

    $(".ui-button-text").live(
        'hover',
        function (ev) {
            if (ev.type == 'mouseover') {
                $(this).addClass("ui-state-hover");
            }

            if (ev.type == 'mouseout') {
                $(this).removeClass("ui-state-hover");
            }
        });
share|improve this answer
2  
What is "ui-state-hover"? How does that apply to the user's original question? – Igor Ganapolsky Jun 10 '10 at 19:47
1  
he's just using Jquery UI default classes when the event takes action.. – jepser Nov 14 '11 at 18:53

WARNING: There is a significant performance penalty with the live version of hover. It's especially noticeable in a large page on IE8.

I am working on a project where we load multi-level menus with AJAX (we have our reasons :). Anyway, I used the live method for the hover which worked great on Chrome (IE9 did OK, but not great). However, in IE8 It not only slowed down the menus (you had to hover for a couple seconds before it would drop), but everything on the page was painfully slow, including scrolling and even checking simple checkboxes.

Binding the events directly after they loaded resulted in adequate performance.

share|improve this answer
1  
useful, but more a comment than an answer. – nailer Feb 4 '12 at 23:55

protected by Robert Harvey Aug 24 '11 at 23:36

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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