jQuery .hasClass()
Learn all about the jQuery function .hasClass().
Elements may have more than one class assigned to them. In HTML, this is represented by separating the class names with a space:
1
|
|
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
:
1
|
|
As would:
1
|
|
While this would return false
:
1
|
|