Pure js hasClass vs jQuery hasclass (v15)

Revision 15 of this benchmark created on


Description

Additional comparison of className and getAttribute("class")

Preparation HTML

<div class=" this is just a test case mother someClass " id="someElement"></div>
<script>
  var el = document.getElementById('someElement');
  
  function hasClass(el, selector) {   
   return (el.className).indexOf(" "+selector+" ")>-1
  }
  


  function hasClass2(el, selector) {
  
   if (("" + el.className + "").replace(/[\n\t]/g, " ").indexOf(" " + selector + " ") > -1) {
    return true;
   }
   return false;
  }

function hasClass3(el, selector) {
   if (el.className.match("\b"+selector+"\b")){return true;}return false;}

function hasClass4(el, selector) {
   var pattern = '/(.*)(' + selector + ')(.*)/gi';
      return el.className.replace(pattern , '$2') == selector;
}

</script>

Test runner

Ready to run.

Testing in
TestOps/sec
hasClass3
hasClass3(el, 'someClass'); 
ready
Pure JS (className)
hasClass(el, 'someClass');
ready
Pure JS (getAttribute)
hasClass2(el, 'someClass');
ready
PureJS replace
hasClass4(el, 'someClass');
ready

Revisions

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