getByClassName (v2)

Revision 2 of this benchmark created on


Description

Change an attribut of

jquery selector for a classname

vs.

document.getElementByClassName in a for-in Loop

Preparation HTML

<div id="ok">
<div class="content">Hey, here is content !</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery
var id = $('#id');
ready
pure JS
var id = document.getElementById('ok');
ready

Revisions

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