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!
|
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! |
||||
|
.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 |
|||||||||||
|
|
In short: The underlying difference between them is that
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
...then that function is copied into each of those elements. However, if you had this code:
...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. |
|||||||||||||
|
|
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. |
|||
|
|
|
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/ |
|||
|
|
|
imagine this scenario:
of course, since the new images didn't exist when you did the now, if you do this:
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 |
|||
|
|
|
In adition to what they said, I think it's best to try to stick to |
|||||||||||||
|
|
I wrote this blog which describes in detail how live works. |
|||||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
Difference between live and livequery is discussed here . |
|||
|
|
bind,liveanddelegate. – Jon Dec 7 '11 at 0:41on(). – Tapirboy Dec 19 '12 at 9:47