Learn how to get the value of a select option using jQuery

 

This post explains you how to get the value of the selected option from the select box using jQuery.

Its pretty simple in jQuery, Look at the below syntax:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$('#yourselectboxid :selected').val()
$('#yourselectboxid :selected').val()
$('#yourselectboxid :selected').val()

the above one line of code will give …