JSFiddle - React, Tailwind, and code Playground

HTML

<select>
<option>Option!</option>
</select>

JavaScript

$(function() {
    $('select').mousedown(function(event) {
        event.preventDefault();
    });
});