THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

jQuery #id Selector

jQuery Selectors jQuery Selectors

Example

Select the element with the id "intro":

$("#intro")
Try it Yourself »

Definition and Usage

The #id selector selects the element with the specific id.

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

Note: The id attribute must be unique within a document.

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


Syntax

$("#id")

Parameter Description
id Required. Specifies the id of the element to select

jQuery Selectors jQuery Selectors