Skip to content

Instantly share code, notes, and snippets.

@TechplexEngineer
Forked from jjmu15/has_class.js
Last active August 29, 2015 14:08
Show Gist options
  • Save TechplexEngineer/5fb44320e4c3f893c0c4 to your computer and use it in GitHub Desktop.
Save TechplexEngineer/5fb44320e4c3f893c0c4 to your computer and use it in GitHub Desktop.
// hasClass, takes two params: element and classname
function hasClass(el, cls) {
return el.className && new RegExp("(\\s|^)" + cls + "(\\s|$)").test(el.className);
}
/* use like below */
// Check if an element has class "foo"
if (hasClass(element, "foo")) {
// Show an alert message if it does
alert("Element has the class!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment