jQuery :selected Selector
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery :selected Selector

❮ jQuery Selectors

Example

Select the pre-selected item(s) in a drop-down list:

$(":selected")
Try it Yourself »

Definition and Usage

The :selected selector selects option elements that are pre-selected.

Note: This selector will not work on checkboxes or radio buttons. Use the :checked selector instead.


Syntax

$(":selected")

❮ jQuery Selectors