Skip to content

Instantly share code, notes, and snippets.

@sonnyt
Last active June 15, 2018 12:45
Show Gist options
  • Save sonnyt/8585696 to your computer and use it in GitHub Desktop.
Save sonnyt/8585696 to your computer and use it in GitHub Desktop.
JavaScript Check If Element Has Class
function hasClass(element, className) {
return element.className && new RegExp("(^|\\s)" + className + "(\\s|$)").test(element.className);
}
var myDiv = document.getElementById('MyDiv');
hasClass(myDiv, 'active');
// OR
Element.prototype.hasClass = function(className) {
return this.className && new RegExp("(^|\\s)" + className + "(\\s|$)").test(this.className);
};
document.getElementById('MyDiv').hasClass('active');
@EbrahemAbdraboh
Copy link

Very Useful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment