Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery hasClass() Method

❮ jQuery HTML/CSS Methods

Example

Check if any <p> element has a class named "intro":

$("button").click(function(){
  alert($("p").hasClass("intro"));
});
Try it Yourself »

Definition and Usage

The hasClass() method checks if any of the selected elements have a specified class name.

If ANY of the selected elements has the specified class name, this method will return "true".


Syntax

$(selector).hasClass(classname)

Parameter Description
classname Required. Specifies the class name to search for in the selected elements

❮ jQuery HTML/CSS Methods