jquery is vs hasclass vs pure (v7)

Revision 7 of this benchmark created by false on


Preparation HTML

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

<a class="someClass" id="someElement" href="#">link</a>


<script>
  var $t = $("#someElement"), tElement = $t[0];
  
  function hasClass(el, selector) {
   var className = " " + selector + " ";
  
   if ((" " + el.className + " ").replace(/[\n\t]/g, " ").indexOf(className) > -1) {
    return true;
   }
  
   return false;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
is
$t.is(".someClass");
ready
hasClass
$t.hasClass("someClass");
ready
pureJs
hasClass(tElement, 'someClass');
ready

Revisions

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