JSFiddle - React, Tailwind, and code Playground
by mobweb
HTML
<select id="select">
<option>1</option>
<option>2</option>
</select>
JavaScript
$("#select").change(function() {
alert("changed");
});
by mobweb
<select id="select">
<option>1</option>
<option>2</option>
</select>
$("#select").change(function() {
alert("changed");
});