.hasClass()

Determine whether any of the matched elements are assigned the given class.

.hasClass(className)🡢 Boolean

className StringThe class name to search for.

Elements may have more than one class assigned to them. In HTML, this is represented by separating the class names with a space:

<div id="mydiv" class="foo bar"></div>

The .hasClass() method will return true if the class is assigned to an element, even if other classes also are. For example, given the HTML above, the following will return true:

$("#mydiv").hasClass("foo");

As would:

$("#mydiv").hasClass("bar");

While this would return false:

$("#mydiv").hasClass("quux");

As of jQuery 1.12/2.2, this method supports XML documents, including SVG.

Looks for the paragraph that contains 'selected' as a class.

JS
<p>This paragraph is black and is the first paragraph.</p>
<p class="selected">This paragraph is red and is the second paragraph.</p>
<div id="result1">First paragraph has selected class:</div>
<div id="result2">Second paragraph has selected class:</div>
<div id="result3">At least one paragraph has selected class:</div>
CSS
p {
  margin: 8px;
  font-size: 16px;
}
.selected {
  color: red;
}
HTML
$("#result1").append($("p").first().hasClass("selected").toString());
$("#result2").append($("p").last().hasClass("selected").toString());
$("#result3").append($("p").hasClass("selected").toString());
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)