innerHTML vs createElement test
JavaScript performance comparison
Info
Bare-Bones
We shouldn't care about string concatenation, or outerHTML returns; we want to know if using innerHTML or createElement is faster. We also don't care about adding to a "live" element, but one that is hidden; just in a variable for example.
For that reason, I have created the innerHTML string and the target "container" div before the test.
Preparation code
<script>
Benchmark.prototype.setup = function() {
var container = document.createElement("DIV");
var HTML = new Array(101).join("<span></span>");
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
100 element innerHTML |
|
pending… |
createElement and appendChild |
|
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
0 comments