Last Updated: February 25, 2016
·
1.3K
· mwarkentin

Getting the display value for a select element

Sometimes you want to get the display value (what's shown on screen) for a select element. You can do it with jQuery like this:

$('select option:selected').text()

1 Response
Add your response

$('select option:selected').val() for the selected value :)

over 1 year ago ·