Saturday, September 21, 2024
Google search engine
HomeLanguagesHow to get selected value in dropdown list using JavaScript ?

How to get selected value in dropdown list using JavaScript ?

In this article, we will learn to get the selected values in the dropdown list in Javascript. The dropdown list is created using the <select> tab with <option> tab and for selecting the value we perform different methods.

You can also see the article for creating the dropdown list how to create the dropdown menu from this article. 

We can get the values using 2 methods:

We will understand both these methods through examples.

Method 1: Using the value property: 

The value of the selected element can be found by using the value property on the selected element that defines the list. This property returns a string representing the value attribute of the <option> element in the list. If no option is selected then nothing will be returned.

Syntax:

selectElement.value

Example: This example describes the valuable property that can be found for the selected elements.

HTML




<!DOCTYPE html>
<head>
    <title>
        How to get selected value in
        dropdown list using JavaScript?
    </title>
</head>
 
<body>
    <h1 style="color: green">
        neveropen
    </h1>
    <b>
        How to get selected value in dropdown
        list using JavaScript?
    </b>
    <p> Select one from the given options:
        <select id="select1">
            <option value="free">Free</option>
            <option value="basic">Basic</option>
            <option value="premium">Premium</option>
        </select>
    </p>
 
 
    <p> The value of the option selected is:
        <span class="output"></span>
    </p>
 
 
    <button onclick="getOption()"> Check option </button>
     
    <script type="text/javascript">
    function getOption() {
        selectElement = document.querySelector('#select1');
        output = selectElement.value;
        document.querySelector('.output').textContent = output;
    }
    </script>
</body>
</html>


Output:

value property

Method 2: Using the selectedIndex property with the option property:

The selectedIndex property returns the index of the currently selected element in the dropdown list. This index starts from 0 and returns -1 if no option is selected. The options property returns the collection of all the option elements in the <select> dropdown list. The elements are sorted according to the source code of the page. The index found before can be used with this property to get the selected element. This option’s value can be found by using the value property.

Syntax:

selectElement.options[selectElement.selectedIndex].value

Property value:

  • selectedIndex: It is used to set or get the index of the selected <option> element in the collection.
  • length: It is a read-only property used to get the number of <option> elements in the collection.

Return value: It returns HTMLOptionsCollection Object by specifying all the <option> elements in the <select> element. The element will be sorted in the collection

Example: This example describes the selectedIndex property with the option property.

HTML




<!DOCTYPE html>
<head>
    <title>
        How to get selected value in
        dropdown list using JavaScript?
    </title>
</head>
 
<body>
    <h1 style="color: green">
        neveropen
    </h1>
    <b>
        How to get selected value in
        dropdown list using JavaScript?
    </b>
    <p> Select one from the given options:
        <select id="select1">
            <option value="free">Free</option>
            <option value="basic">Basic</option>
            <option value="premium">Premium</option>
        </select>
    </p>
    <p> The value of the option selected is:
        <span class="output"></span>
    </p>
 
 
    <button onclick="getOption()">Check option</button>
    <script type="text/javascript">
 
        function getOption() {
            selectElement = document.querySelector('#select1');
            output = selectElement.options[selectElement.selectedIndex].value;
            document.querySelector('.output').textContent = output;
        }
    </script>
</body>
</html>


Output:

SelectedIndex property with option property

JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.

RELATED ARTICLES

Most Popular

Recent Comments