jQuery CSS3 Not vs. .Not() - Class (v33)

Revision 33 of this benchmark created on


Preparation HTML

<div id="container">
      <div class="myclass"> my class </div>
      <div>Div</div>
</div>
<script src="https://code.jquery.com/jquery-git2.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
CSS3 Selector
var d = $('div:not(.myclass)');
ready
Not() Method
var d = $('div').not('.myclass');
ready
:has selector
var d = $('div:has(.myclass)');
ready
has method
var d = $('div').has('.myclass');
ready

Revisions

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