Skip to content

Instantly share code, notes, and snippets.

@hasanmisbah
Created August 18, 2021 19:03
Show Gist options
  • Save hasanmisbah/508ef30a30c604ff5f18db982399a41f to your computer and use it in GitHub Desktop.
Save hasanmisbah/508ef30a30c604ff5f18db982399a41f to your computer and use it in GitHub Desktop.
Returns true if the element has the specified class, otherwise false .
// Check element have class
const hasClass = (el, className) => el.classList.contains(className);
// usage
hasClass(document.querySelector('p.special'), 'special');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment