Trying to figure out how to use the Jquery .on() method with a specific selector that has multiple events associated with it. I was previously using the .live() method, but not quite sure how to accomplish the same feat with .on(). Please see my code below:

$("table.planning_grid td").live({
  mouseenter:function(){
     $(this).parent("tr").find("a.delete").show();
  },
  mouseleave:function(){
     $(this).parent("tr").find("a.delete").hide();        
  },
  click:function(){
    //do something else.
  }
});

I know I can assign the multiple events by calling:

 $("table.planning_grid td").on({
    mouseenter:function(){  //see above
    },
    mouseleave:function(){ //see above
    }
    click:function(){ //etc
    }
  });

But I believe the proper use of .on() would be like so:

   $("table.planning_grid").on('mouseenter','td',function(){});

Is there a way to accomplish this? Or what is the best practice here? I tried the code below, but no dice.

$("table.planning_grid").on('td',{
   mouseenter: function(){ //event1 }, 
   mouseleave: function(){ //event2 },
   click: function(){  //event3 }
 });

Thanks in advance!

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

That's the other way around. You should write:

$("table.planning_grid").on({
    mouseenter: function() {
        // Handle mouseenter...
    },
    mouseleave: function() {
        // Handle mouseleave...
    },
    click: function() {
        // Handle click...
    }
}, "td");
link|improve this answer
Why isn't the selector $("table.planning_grid td") ? – Muers Dec 22 '11 at 18:20
2  
@Muers, it would also work and the questioner acknowledges so, but also believes that he should bind the event on the <table> instead of each individual <td> element, which is indeed the right way to go. – Frédéric Hamidi Dec 22 '11 at 18:23
@Frederic - Thanks so much! That's exactly what I was looking for. – butangphp Dec 22 '11 at 18:27
Awesomesauce. Thanks so much, this helped me immensely! – Lazerblade Apr 17 at 20:28
There is a good reason to use the .on on the <table> and not on the <td> and it's if you dynamically add <td>s later. $('table td').on... will only effect the <td> that are in the table the moment you call this function. $('table').on(... ,'td',function...) will effect any <td> you will add to this table later. – Raanan May 11 at 10:31
feedback

Your Answer

 
or
required, but never shown

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