How to get drop down value when drop down change using javascript
onchange
events
dropdown
javascript
functions
Here is the sample example to the get value from the drop down
Here the code is
<script> function changeFunction(){ var color = document.getElementById('color').value; alert(color); } </script> <select onchange="changeFunction()" id="color"> <option value="black">Select Black</option> <option value="red">Select Red</option> <option value="blue">Select Blue</option> <option value="green">Select Green</option> </select>
You might also like:
Compare the Triplets | Javascript | hackerrank.com07-05-2020 hackerrank.com |
Functions in javascript25-05-2018 functions javascript es5 es6 arrow functions named functions Closures Nested Functions Callbacks Arrow functions. |
Time Sorting Ascending or Descending Order in Javascript19-07-2017 Javascript ascending order descending order |
Example for Conditional Operator in php16-04-2017 php Conditional Operator example |
How to convert html to pdf in Node js12-03-2017 pdf convert html node js |