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

In jQuery v1.7 a new method, on was added. From the documentation:

‘The .on() method attaches event handlers to the currently selected set of elements in the jQuery object. As of jQuery 1.7, the .on() method provides all functionality required for attaching event handlers.’

What's the difference with live and bind?

share|improve this question
2  
Had look for something like that before asking and didn't succeed. Thanks! – Diego Nov 9 '11 at 13:33

6 Answers

up vote 157 down vote accepted

on() is an attempt to merge most of jQuery's event binding functions into one. This has the added bonus of tidying up the inefficiencies with live vs delegate. In future versions of jQuery, these methods will be removed and only on and one will be left.

Examples:

// Using live()
$(".mySelector").live("click", fn);

// Equivalent `on` (there isn't an exact equivalent, but with good reason)
$(document).on("click", ".mySelector", fn);
// Using bind()
$(".mySelector").bind("click", fn);

// Equivalent `on`
$(".mySelector").on("click", fn);
// Using delegate()
$(document.body).delegate("click", ".mySelector", fn);

// Equivalent `on`
$(document.body).on("click", ".mySelector", fn);

Internally, jQuery maps all these methods and shorthand event handler setters to the on() method, further indicating that you should ignore these methods from now on and just use on:

bind: function( types, data, fn ) {
    return this.on( types, null, data, fn );
},
live: function( types, data, fn ) {
    jQuery( this.context ).on( types, this.selector, data, fn );
    return this;
},
delegate: function( selector, types, data, fn ) {
    return this.on( types, selector, data, fn );
},

See https://github.com/jquery/jquery/blob/1.7/src/event.js#L965.

share|improve this answer
22  
+1 for the most understandable answer. Thank you. – Bojangles Nov 9 '11 at 13:02
As @JamWaffles said the most understandable answer. Would you please add the comparison between on and delegate to complete the answer? Thanks! – Diego Nov 9 '11 at 13:08
lols, you added the jquery source 4 seconds before me :D btw live equivalent context is document, not document.body – Esailija Nov 9 '11 at 13:10
@Diego: done, and thank you. – Andy E Nov 9 '11 at 13:12
1  
You might want to refer to the 1.7 tag instead, otherwise future changes might make your link invalid (not point to the right location): github.com/jquery/jquery/blob/1.7/src/event.js#L965 – Felix Kling Nov 9 '11 at 13:34
show 6 more comments

with .on method it is possible to do .live, .delegate, and .bind with the same function but with .live() only .live() is possible ( delegating events to document ).

jQuery("#example").bind( "click", fn ) = jQuery( "#example").on( "click", fn );

jQuery("#example").delegate( ".examples", "click", fn ) = jQuery( "#example" ).on( "click", ".examples", fn )

jQuery("#example").live( fn ) = jQuery( document ).on( "click", "#example", fn )

I can confirm this directly from jQuery source:

bind: function( types, data, fn ) {
    return this.on( types, null, data, fn );
},

live: function( types, data, fn ) {
    jQuery( this.context ).on( types, this.selector, data, fn );
    return this;
},

delegate: function( selector, types, data, fn ) {
    return this.on( types, selector, data, fn );
},

jQuery( this.context )? this.context === document in most cases

share|improve this answer

on is in nature very close to delegate. So why not use delegate? It's because on doesn't come alone. there off, to unbind event and one to create an event to be executed one time only. This is a new event's "package".

the main problem of live is that it attach to "window", forcing a click event (or other event) on an element deep inside the page structure (the dom), to "bubble up" to the top of the page to find an event handler willing to deal with it. At each level, all events handlers have to be checked, this can add up fast if you deep imbrication (<body><div><div><div><div><table><table><tbody><tr><td><div><div><div><ul><li><button> etc etc etc...)

bind, like click, like other shortcut event binders attach directly to the event target. If you have a table of, let's say, 1000 lines and 100 columns, and each of the 100'000 cells includes a checkbox which click you want to handle. Attaching 100'000 event handlers will take a lot of time on page load. Creating a single event at the table level, and using event delegation is several orders of magnitude more efficient. The event target will be retrieved at event execution time. "this" will be the table, but "event.target" will be your usual "this" in a click function. Now the nice thing with on is that "this" will always be the event target, and not the container it is attached to.

share|improve this answer

live is the shortcut for .on() now

//from source http://code.jquery.com/jquery-1.7.js
live: function( types, data, fn ) {
    jQuery( this.context ).on( types, this.selector, data, fn );
    return this;
}

also this post may be usefull for you http://blog.jquery.com/2011/11/03/jquery-1-7-released/

share|improve this answer

(My opening sentence made more sense before you changed the question. Originally you'd said "What's the difference with live?")

on is more like delegate than it is like live, it's basically a unified form of bind and delegate (in fact, the team said its purpose is "...to unify all the ways of attaching events to a document...").

live is basically on (or delegate) attached to the document as a whole. It's deprecated as of v1.7 in favor of using on or delegate. Going forward, I suspect we'll see code using on solely, rather than using bind or delegate (or live)...

So in practice, you can:

  1. Use on like bind:

    /* Old: */ $(".foo").bind("click", handler);
    /* New: */ $(".foo").on("click", handler);
    
  2. Use on like delegate (event delegation rooted in a given element):

    /* Old: */ $("#container").delegate(".foo", "click", handler);
    /* New: */ $("#container").on("click", ".foo", handler);
    
  3. Use on like live (event delegation rooted in the document):

    /* Old: */ $(".foo").live("click", handler);
    /* New: */ $(document).on("click", ".foo", handler);
    
share|improve this answer
In the page I linked says "If new HTML is being injected into the page, select the elements and attach event handlers after the new HTML is placed into the page. Or, use delegated events to attach an event handler, as described next.". So on is more likely bind, not live. Am I right? – Diego Nov 9 '11 at 12:58
@Diego: on is a combination of bind and delegate, and as I said, not very much like live. You can use on like bind (attach a handler directly to an element), or you can use on like delegate (attach a handler to an element, but fire the event only if the actual element clicked matches a selector, and as though that element were the one the event happened on -- e.g., event delegation), or you can use it like live (delegate using the document as the root). It's the event delegation that makes it useful if you're adding elements dynamically. – T.J. Crowder Nov 9 '11 at 13:02
the old live could also be used like delegate: $("#id", ".class").live(fn) = $(".class").delegate("#id", fn ); Actually in old jQuery source they used live as the general case and delegate as a special case, which made this all the more confusing when you think about it. – Esailija Nov 9 '11 at 13:21
@Esailija: Fair enough. I don't think that's the use it got known for, because they added delegate right quick, but still. :-) – T.J. Crowder Nov 9 '11 at 13:22
Yeah that's the confusing part. :D – Esailija Nov 9 '11 at 13:23

For more informationon the perf you can check http://jsperf.com/live-vs-bind/3

share|improve this answer
Really interesting link! – Diego Nov 9 '11 at 13:25
2  
JSperf is a realy good tool for js testing. But in this test the live exemple isn't realy pertinent beacause it doesn't click on clic but just attach event. – DoubleYo Nov 9 '11 at 13:44
1  
+1 @DoubleYo ... the test is meaningless. – Danyal Aytekin Oct 29 '12 at 11:19

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.