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

jQuery's 'live' method is unable to handle multiple events. Does anyone know of a good workaround to attach multiple events to a function that polls current and future elements? Or am I stuck using duplicate live methods for each event handler I need?

Example - I am trying to do something like:

$('.myclass').live('change keypress blur', function(){
  // do stuff
});
share|improve this question
are you trying to attach multiple handlers to the same event? or are you trying to attach a handler for many different events? – geowa4 Oct 29 '09 at 20:07
It sounds like he wants multiple events in the same handler, as if you could do $("a").live(["click","mouseover","doubleclick"], function() { //do stuff here}. Which you can't. – JacobM Oct 29 '09 at 20:15
I'm trying to do something like "$('.myclass').live("click keypress blur", function(){..." – Will Peavy Oct 30 '09 at 13:57

4 Answers

As of jQuery 1.4.1 .live() can accept multiple, space-separated events, similar to the functionality provided in .bind(). For example, we can "live bind" the mouseover and mouseout events at the same time like so:

$('.hoverme').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    // do something on mouseover
  } else {
    // do something on mouseout
  }
});
share|improve this answer

As of jQuery 1.4.3, you can bind multiple live event handlers simultaneously by passing a map of event type/handler pairs:

$("a").live({
  click: function() {
    // do something on click
  },
  mouseover: function() {
    // do something on mouseover
  }
});

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

share|improve this answer

in jQuery 1.7 there is an API that allow you to do it easily...

$(".myClass").on({
    click: function(){
         alert("You click on me!");
    },
    mouseenter: function(){
         alert("Do you want click on me?");
    }
});

in my opinion this method is completely efficient and gathering all abilities that you can use in element's event.... take a look at this page .on() [ jQeury 1.7 API ]

share|improve this answer

Try in this way:

("#button").bind("click keyup", function(){

// your code goes here

}) 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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