MyJS vs jQuery vs Dojo (v14)

Revision 14 of this benchmark created by Sekhar Divakaruni on


Description

Compare dojo, jquery and my.js get element by id.

Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/ext-core/3.1.0/ext-core.js"></script><script src="//ajax.googleapis.com/ajax/libs/dojo/1.6/dojo/dojo.xd.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="http://myjs.fr/0.1.2/my.js"></script>
<div id='test'></div>
<script>
  (function(obj) {
   var cache = {};
  
   obj.getEBI = function(id) {
    var c = cache[id];
    if (!c) cache[id] = c = document.getElementById(id);
    return c;
   };
  
  })(window);
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery
$("#test");
ready
Dojo
dojo.byId("test");
ready
MyJS
my("test");
ready
Native
document.getElementById('test');
ready
Native (cached)
getEBI("test");
ready
Ext.get("test");
ready

Revisions

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