Languages
[Edit]
EN

jQuery - get selected option value from dropdown select

6 points
Created by:
ArcadeParade
666

In this article, we would like to show you how to get the selected option value from dropdown select using jQuery.

Quick solution:

var value = $('#my-dropdown-id option:selected').val();

or:

var value = $('#my-dropdown-id').find(":selected").val();

 

Practical example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <select id="my-dropdown-id">
    <option value="1">Blue</option>
    <option value="2" selected>Green</option>
    <option value="3">Red</option>
    <option value="4">Yellow</option>
  </select>
<script>
  
    $(document).ready(function() {
        var value1 = $('#my-dropdown-id option:selected').val();
        console.log("value1: " + value1);

        var value2 = $('#my-dropdown-id').find(":selected").val();
        console.log("value2: " + value2);
    });
  
</script>
</body>
</html>

Alternative titles

  1. jQuery - how to get selected option value from dropdown select
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

jQuery

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join