Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

jQuery .class Selector

❮ jQuery Selectors

Example

Select all elements with class "intro":

$(".intro")
Try it Yourself »

Definition and Usage

The .class selector selects all elements with the specific class.

The class refers to the class attribute of an HTML element.

The class attribute is used to set a particular style for several HTML elements.

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


Syntax

$(".class")

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

Try it Yourself - Examples

Select all p elements with class "intro"
How to select all p elements with class "intro".


❮ jQuery Selectors