Cover Image for Get Selected Value in Drop-down in jQuery
169 views

Get Selected Value in Drop-down in jQuery

To get the selected value from a drop-down list using jQuery, you can use the .val() method. Here’s a step-by-step guide on how to do this:

Assuming you have the following HTML for your drop-down list:

<select id="myDropdown">
  <option value="option1">Option 1</option>
  <option value="option2">Option 2</option>
  <option value="option3">Option 3</option>
</select>

You can use the following jQuery code to get the selected value:

<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
  $(document).ready(function() {
    // Select the drop-down element by its ID
    var selectedValue = $("#myDropdown").val();

    // Log the selected value to the console
    console.log("Selected value: " + selectedValue);
  });
</script>

In this example, we:

  1. Include the jQuery library.
  2. Use $(document).ready() to ensure that the script is executed after the document is fully loaded.
  3. Select the drop-down element using its ID, which is “myDropdown.”
  4. Use the .val() method to get the selected value and store it in the selectedValue variable.
  5. Log the selected value to the console using console.log().

It will log the selected value from the drop-down list to the browser’s console. You can then use the selectedValue variable as needed in your JavaScript code.

YOU MAY ALSO LIKE...

The Tech Thunder

The Tech Thunder

The Tech Thunder


COMMENTS