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 multiple classes Selector

❮ jQuery Selectors

Example

Select all elements with class "intro", "demo" or "end":

$(".intro, .demo, .end")
Try it Yourself »

Definition and Usage

The .class selector can also be used to select multiple classes.

Note: Seperate each class with a comma.

Note: Do not start a class attribute with a number. It may cause problems in some browsers.


Syntax

$(".class1,.class2,.class3,...")

Parameter Description
class Required. Specifies the class of the elements to select

❮ jQuery Selectors