-
-
Save pallavizanje/6e188521c4c800a3ce7c38b58ec799ff to your computer and use it in GitHub Desktop.
JavaScript Check If Element Has Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment