jquery is vs hasclass vs pure (v6)

Revision 6 of this benchmark created by Jeremy A. Prescott on


Description

Added TestCase6, to also test pureJS in a "class not existent matter". Added variable "target" to ensure, the get()/getElementById process doesn't count towards the tests

Preparation HTML

<a class="someClass" id="someElement" href="#">link</a>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
  var $t = $("#someElement");
  var target = $t.get(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(target, 'someClass');
ready
is non existing
$t.is(".otherClass");
ready
hasClass non existing
$t.hasClass("otherClass");
ready
pureJs non existing
hasClass(target, 'otherClass');
ready

Revisions

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