innerHTML vs createElement test
JavaScript performance comparison
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<div id="container">
</div>
<script>
Benchmark.prototype.setup = function() {
document.getElementById('container').innerHTML = '';
};
Benchmark.prototype.teardown = function() {
document.getElementById('container').innerHTML = '';
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
100 element innerHTML |
|
pending… |
100 element createElement added in sequence |
|
pending… |
100 element createElement bulk add |
|
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 by copy
- Revision 3: published
- Revision 4: published
- Revision 6: published
- Revision 7: published
- Revision 8: published by Ben
- Revision 9: published
- Revision 10: published
- Revision 11: published and last updated
- Revision 12: published
- Revision 13: published and last updated
- Revision 14: published
- Revision 15: published by Thomas Giles
- Revision 16: published
- Revision 18: published
- Revision 19: published
- Revision 20: published by Dave Dopson
- Revision 21: published
- Revision 23: published
- Revision 24: published
0 comments