jQuery selector vs hasClass

Benchmark created by Dan DeFelippi on


Description

Test which is faster, a selector including the class compared to hasClass.

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<div class="foo"></div>
<script>
  var found = false;
  $("body").addClass("foobar");
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
selector
if ($("body.foobar").length) {
 found = true;
}
ready
hasClass
if ($("body").hasClass("foobar")) {
 found = true;
}
ready

Revisions

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