FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

jQuery .class Selector

jQuery Selectors 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

Examples

Try it Yourself - Examples

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


jQuery Selectors jQuery Selectors