4
Answers

Option : selected parameter

I'm new to Jquery,
I had found lot of ways for getting the selected text from dropdown. 
This is the one among those.
 

$("option:selected", $("#TipoRecorde")).text();

 
There, what we call the 1st parameter(option:selected) ? 
 
Is it a selector ? 

Answers (4)