jQuery .live() vs .delegate() vs .on() (v26)

Revision 26 of this benchmark created by pcmanik on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<div id="context">
  <p>
    Some paragraph
  </p>
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
.click()
$('p').click($.noop);
ready
.bind() with context
$('p', '#context').bind('click', $.noop);
ready
.delegate()
$('#context').delegate('p', 'click', $.noop);
ready
.delegate() on document
$(document).delegate('p', 'click', $.noop);
ready
.on()
$('#context').on('click', 'p', $.noop);
ready
.on() on document
$(document).on('click', 'p', $.noop);
ready
.live() on p
$('p').live('click',$.noop);
ready
.bind() without context
$('p').bind('click', $.noop);
ready
direct .on()
$('p').on('click', $.noop);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.