If the value for an option is not defined specifically, the text content of the <option> element will be used as a value instead, as demonstrated in the following example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Get Selected Option Text</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});
});
</script>
</head>
<body>
<form>
<label>Select Country:</label>
<select class="country">
<option>United States</option>
<option>India</option>
<option>United Kingdom</option>
</select>
</form>
</body>
</html>
Alternativley, you can use the jQuery text() method to get the text content of an element.
Get Selected Options from Multiple Select Box
Similarly, you can retrieve the selected values from multiple select boxes with a little trick.
A multiple select box allows a user to select multiple options. Hold down the control key on Windows or command key on Mac to select multiple options. You can enable multiple section in a select box by adding the attribute multiple to the <select> tag. Here's an example:
Use the jQuery
:selected
SelectorYou can use the jQuery
:selected
selector in combination with theval()
method to find the selected option value in a select box or dropdown list.Let's try out the following example to understand how it basically works:
If the value for an option is not defined specifically, the text content of the <option> element will be used as a value instead, as demonstrated in the following example:
Alternativley, you can use the jQuery
text()
method to get the text content of an element.Get Selected Options from Multiple Select Box
Similarly, you can retrieve the selected values from multiple select boxes with a little trick.
A multiple select box allows a user to select multiple options. Hold down the control key on Windows or command key on Mac to select multiple options. You can enable multiple section in a select box by adding the attribute
need an explanation for this answer? contact us directly to get an explanation for this answermultiple
to the<select>
tag. Here's an example: