makedom3
JavaScript performance comparison
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
function makeDOM(o,to){
var ele = document.createElement(o.element);
for (var prop in o.props) {
ele[prop] = o.props[prop];
}
$(ele).prependTo(to);
}
</script>
<script>
Benchmark.prototype.teardown = function() {
$(".foo").remove();
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
makeDom |
|
pending… |
native |
|
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 by Alexander Schmitz
- Revision 2: published by Alexander Schmitz
- Revision 3: published by Alexander Schmitz
- Revision 4: published by Gabriel Schulhof
- Revision 5: published by Alexander Schmitz
0 comments