JSFiddle - React, Tailwind, and code Playground
by Dogbert
HTML
<select id="select">
<option>A</option>
<option>B</option>
</select>
JavaScript
$("#select").change(console.log.bind(console))
$("#select").change();
by Dogbert
<select id="select">
<option>A</option>
<option>B</option>
</select>
$("#select").change(console.log.bind(console))
$("#select").change();