JSFiddle - React, Tailwind, and code Playground

HTML

<select class="my-select">
    <option value="1">First</options>
    <option value="2">Second</options>
</select>

JavaScript

$(document).ready(function() {

    $(".my-select").on("click", function(event){
        alert('Do something on click');
    });
    
});