Skip to content

Instantly share code, notes, and snippets.

@greal
Created April 18, 2019 09:26
Show Gist options
  • Save greal/b1e08a493d225eefb6746132b8380e31 to your computer and use it in GitHub Desktop.
Save greal/b1e08a493d225eefb6746132b8380e31 to your computer and use it in GitHub Desktop.
hasClass from jQuery on Vanilla.js
function hasClass(el, className) {
if (el.classList) {
return el.classList.contains(className);
} else {
return new RegExp('(^| )' + className + '( |$)', 'gi').test(el.className);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment