JSFiddle - React, Tailwind, and code Playground
by rajaasthana
HTML
<select id="dropdown">
<option>First</option>
<option>Second</option>
<option>Third</option>
</select>
<textarea id="textarea"> </textarea>
JavaScript
document.getElementById('dropdown')
.addEventListener('change', function () {
console.log(this.value);
document.getElementById('textarea').innerHTML += this.value;
}, false);