jquery selector speed (v49)

Revision 49 of this benchmark created on


Preparation HTML

<div id="container">
    <ul>
        <li>1</li>
        <li id="target "class="target">2</li>
        <li>3</li>
    </ul>
</div><script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
$('div#container ul li').eq(1)
$('div#container ul li').eq(1).css('border','1px solid red');
ready
$('#target')
$('#target').css('border','1px solid red');
ready
$('.target')
$('.target').css('border','1px solid red');
ready

Revisions

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