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 curious to know the differences between the bind and live functions.

To me they seem to be almost identical.

I read the benefits of live/bind methods, but it didn't tell me about the differences...

Thanks!

share|improve this question
1  
In addition to the answer below, readers might want to have a look at this unbelievably good article explaining the difference between bind, live and delegate. – Jon Dec 7 '11 at 0:41
3  
Update: Since jquery 1.7 - ´live()´ is deprecated in favor for on(). – Tapirboy Dec 19 '12 at 9:47

10 Answers

up vote 67 down vote accepted

.bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements created afterwards or that match going forward because the class was changed, will not fire the bound event.

.live() works for existing and future matching elements. Before jQuery 1.4 this was limited to the following events: click, dblclick mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup

share|improve this answer
32  
For anyone reading this now, .live() is no longer limited to the events listed above. The .live() event now has support in jQuery 1.4 for all events, including custom events. – Josh Smith Aug 28 '10 at 17:25
1  
this answer does not really answer the question, see below answer by nickf for the requested explanation – mwb Jun 12 '11 at 15:26
Bind is just a poor and limited live… why on earth does it still exists ? – Ben Jul 13 '12 at 10:43

In short: .bind() will only apply to the items you currently have selected in your jQuery object. .live() will apply to all current matching elements, as well as any you might add in the future.

The underlying difference between them is that live() makes use of event bubbling. That is, when you click on a button, that button might exist in a <p>, in a <div>, in a <body> element; so in effect, you're actually clicking on all of those elements at the same time.

live() works by attaching your event handler to the document, not to the element. When you click on that button, as illustrated before, the document receives the same click event. It then looks back up the line of elements targeted by the event and checks to see if any of them match your query.

The outcome of this is twofold: firstly, it means that you don't have to continue reapplying events to new elements, since they'll be implicitly added when the event happens. However, more importantly (depending on your situation), it means that your code is much much lighter! If you have 50 <img> tags on the page and you run this code:

$('img').click(function() { /* doSomething */ });

...then that function is copied into each of those elements. However, if you had this code:

$('img').live('click', function() { /* doSomething */ });

...then that function is stored only in one place (on the document), and is applied to whatever matches your query at event time.

Because of this bubbling behaviour though, not all events can be handled this way. As Ichiban noted, these supported events are click, dblclick mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup.

share|improve this answer
Very good! Thanks! – Kevin Brown Jun 2 '09 at 0:35
1  
Thanks for the explanation of how this works. The jQuery documentation doesn't explain any of this, which seems important for using it. – harpo Mar 23 '10 at 18:46
@meagar: "Because of this bubbling behaviour though, not all events can be handled this way. As Ichiban noted, these supported events are click, dblclick mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup." So now that it works for all events in later versions of jQuery, is it still working by being attached to the body and triggered when the body finally receives the bubbled event, or did that change? – mwb Jun 12 '11 at 15:25
Thanks, awesome answer, easy to understand. – Minh Le Nov 14 '11 at 16:47
Great answer! Really helps to understand what goes on in the code. Was actually looking for this. Big +1 from me! – Eduard Luca Mar 22 '12 at 8:57
show 6 more comments

Bind will bind events to the specified pattern, for all matches in the current DOM at the time you call it. Live will bind events to the specified pattern for the current DOM and to future matches in the DOM, even if it changes.

For example, if you bind $("div").bind("hover", ...) it will apply to all "div"s in the DOM at the time. If you then manipulate the DOM and add an extra "div", it won't have that hover event bound. Using live instead of bind would dispatch the event to the new div as well.

share|improve this answer

Nice read on this: http://www.alfajango.com/blog/the-difference-between-jquerys-bind-live-and-delegate/

Is nowadays (since jQuery 1.7) depricated using the .on() function - http://api.jquery.com/on/

share|improve this answer

imagine this scenario:

  1. i have several <img> elements.
  2. $('img').bind('click', function(){...});
  3. add some extra images (using get(), or html(), anything)
  4. the new images don't have any binding!!

of course, since the new images didn't exist when you did the $('img')... at step 2, it didn't bind the event handler to them.

now, if you do this:

  1. i have several <img> elements.
  2. $('img').live('click', function(){...});
  3. add some extra images (using get(), or html(), anything)
  4. the new images do have the binding!!

magic? just a little. in fact jQuery binds a generic event handler to another element higher in the DOM tree (body? document? no idea) and lets the event bubble up. when it gets to the generic handler, it checks if it matches your live() events and if so, they're fired, no matter if the element was created before or after the live() call.

share|improve this answer
this is a very good description – Hubrid Jul 17 '12 at 18:38

In adition to what they said, I think it's best to try to stick to bind when/where you can and use live only when you must.

share|improve this answer
You're right. .live is a must for ajax events, though, right? – Kevin Brown Jun 1 '09 at 22:25
1  
Why do you say that? I've found that live simplifies the code. I'm pretty picky about performance, and it seems fine to me. What's the downside? – Nosredna Jun 2 '09 at 0:29
Well, first of all because not all events are available with live(). Secondly, because I think they are harder to manage (no stopPropagation and stopImmediatePropagation), and third because live() surely generates more overhead than bind() (as it looks for changes in the DOM). Maybe not a killer difference, but still. That's why I tend to stick to bind() where possible. – andi Jun 2 '09 at 8:44
2  
live() doesn't look for DOM changes, it maintains a list of target selectors and checks them at event time (the events fire on document). There is some overhead, but it's very minimal. The real danger is that some uses of live can cause garbage collection to fail. – eyelidlessness Oct 9 '09 at 15:40

I wrote this blog which describes in detail how live works.

http://www.neeraj.name/blog/articles/882-how-live-method-works-in-jquery-why-it-does-not-work-in-some-cases-when-to-use-livequery

share|improve this answer
the link is dead – cmroanirgo Apr 28 '10 at 0:05
It is working again. Thanks for the feedback. – Neeraj Singh May 3 '10 at 13:59

I wanted to add to this after having to debug a bit due to my own silliness. I applied .live() to a class of button on my page, assuming that it would just render out the correct ID I was trying to pass on the query string and do what I wanted to do with the ajax call. My app has dynamically added buttons associated with an inventory item. For instance, drill down categories to the 'COKE' button to add a coke to your order. Drill down from the top again, and add 'BUDLITE' - each time I wanted those items to be entered into a table via an AJAX call.

However, since I bound .live() to the entire class of buttons, it would remember each ajax call I had made and re-fire it for each subsequent button! It was a little tricky because I wasn't exactly clear on the difference between bind and live (and the answer above is crystal about it), so I figured I'd put this here just in case somebody was doing a search on this stuff.

share|improve this answer

There is a way to get the live effect but its kind of nasty.

$(this).unbind('mouseout').bind('mouseout',function(){ });

this will clear the previous and reset the new. It has seemed to work fine for me over time.

share|improve this answer
Or you can use proper event delegation, bind the events to document, and check the event's target. – eyelidlessness Oct 9 '09 at 15:40

Difference between live and livequery is discussed here .

share|improve this answer
that link is dead – gnibbler Aug 8 '11 at 6:51

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.