Pure js hasClass vs jQuery hasclass (v24)

Revision 24 of this benchmark created on


Preparation HTML

<div class="someClass" id="someElement"></div><script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
  var el = document.getElementById('someElement');
  
  function hasClass(el, selector) {
    return (el.className.indexOf(selector) >= 0);
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery
$(el).hasClass('someClass');
ready
Pure JS
hasClass(el, 'someClass');
ready

Revisions

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