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();