Plain JS (v75)

Revision 75 of this benchmark created on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script src="https://staging-ian.appmobi.com/game/jq.mobi.min.js">
</script>
<script src="https://staging-ian.appmobi.com/game/zepto.min.js">
</script>
<div id="container">
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
jQ.Mobi
document.getElementById("container").innerHTML = "";
$ = jq;

var con = jq("#container");
var ul = jq("<ul/>");
var i;
for (i = 0; i < 100; i++) {
  var li = jq("<li>hello world jq.Mobi</li>");
  ul.append(li);
}
con.append(ul);
ready
jQuery
document.getElementById("container").innerHTML = "";


var con = jQuery("#container");
var ul = jQuery("<ul/>");
var i;
for (i = 0; i < 100; i++) {
  var li = jQuery("<li>hello world jQuery</li>");
  ul.append(li);
}
con.append(ul);
ready
Zepto
document.getElementById("container").innerHTML = "";


var con = Zepto("#container");
var ul = Zepto("<ul/>");
var i;
for (i = 0; i < 100; i++) {
  var li = Zepto("<li>hello world Zepto</li>");
  ul.append(li);
}
con.append(ul);
ready
JS
// async test
document.getElementById("container").innerHTML = "";


var con = document.getElementById("container");
var ul = document.createElement("ul");
var i;
for (i = 0; i < 100; i++) {
  var li = document.createElement("li");
  li.innerHTML = "hello world Plain";
  ul.appendChild(li);
}
con.appendChild(ul);
ready

Revisions

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