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

jQuery :selected Selector

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