Too many events
JavaScript performance comparison
Info
<div id="foo"></div> <div id="bar"></div>
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
Benchmark.prototype.setup = function() {
var $foo = $('#foo'), $bar = $('#bar'), dummy, dimmy;
for(var i=0; i<50; ++i) {
dummy = $('<div>').attr('id', 'dummy-'+i).attr('number', i).addClass('dummy').appendTo($foo);
$('#foo #dummy-'+i).on('click', function() {
console.log(i);
})
dimmy = $('<div>').attr('id', 'dimmy-'+i).attr('number', i).addClass('dimmy').appendTo($bar);
}
$('#bar .dimmy').on('click', function(evt) {
console.log(this.getAttribute('number'));
})
};
Benchmark.prototype.teardown = function() {
$foo.empty();
$bar.empty();
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Many delegates |
|
pending… |
Single event |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published
- Revision 2: published
0 comments