How to check if an element has a class in javascript?

Software
AffiliatePal is reader-supported. When you buy through links on our site, we may earn an affiliate commission.

Listen

Introduction

Checking if an element has a specific class is a common task in JavaScript programming. Whether you want to manipulate elements based on their class or perform conditional actions, knowing how to check if an element has a class is essential. In this article, we will explore different methods to achieve this in JavaScript.

Using the classList property

One of the easiest and most straightforward ways to check if an element has a class is by using the `classList` property. The `classList` property provides methods to add, remove, toggle, and check for the presence of classes on an element.

To check if an element has a class, you can use the `contains()` method of the `classList` property. This method returns a boolean value indicating whether the element has the specified class.

Here’s an example of how to use the `contains()` method:

“`javascript
const element = document.getElementById(‘myElement’);
if (element.classList.contains(‘myClass’)) {
console.log(‘The element has the class “myClass”‘);
} else {
console.log(‘The element does not have the class “myClass”‘);
}
“`

In the example above, we first retrieve the element with the id “myElement”. Then, we use the `contains()` method to check if the element has the class “myClass”. Depending on the result, we log the appropriate message to the console.

Using the className property

Another way to check if an element has a class is by using the `className` property. The `className` property returns a string containing the class names of an element.

To check if an element has a class using the `className` property, you can use the `includes()` method of the string. The `includes()` method returns a boolean value indicating whether a specified string is found within the original string.

Here’s an example of how to use the `includes()` method with the `className` property:

“`javascript
const element = document.getElementById(‘myElement’);
if (element.className.includes(‘myClass’)) {
console.log(‘The element has the class “myClass”‘);
} else {
console.log(‘The element does not have the class “myClass”‘);
}
“`

In this example, we retrieve the element with the id “myElement” and use the `includes()` method to check if the class name string contains the class “myClass”. Based on the result, we log the appropriate message to the console.

Using regular expressions

If you need more advanced matching capabilities, you can use regular expressions to check if an element has a class. Regular expressions provide a powerful way to search for patterns within strings.

Here’s an example of how to use a regular expression to check if an element has a class:

“`javascript
const element = document.getElementById(‘myElement’);
const className = element.className;
const regex = new RegExp(‘\bmyClass\b’);
if (regex.test(className)) {
console.log(‘The element has the class “myClass”‘);
} else {
console.log(‘The element does not have the class “myClass”‘);
}
“`

In this example, we use the `test()` method of the regular expression object to check if the class name string matches the regular expression pattern. The pattern `bmyClassb` matches the exact class name “myClass”. If the test is successful, we log the appropriate message to the console.

Conclusion

Checking if an element has a class in JavaScript is a fundamental task when working with the DOM. In this article, we explored different methods to achieve this, including using the `classList` property, the `className` property, and regular expressions. Depending on your specific requirements, you can choose the method that best suits your needs.

References

– developer.mozilla.org: [Element.classList](https://developer.mozilla.org/en-US/docs/Web/API/Element/classList)
– developer.mozilla.org: [String.prototype.includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)
– developer.mozilla.org: [RegExp.prototype.test](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test)