JSFiddle - React, Tailwind, and code Playground
HTML
<select>
<option>Option!</option>
</select>
JavaScript
$(function() {
$('select').mousedown(function(event) {
event.preventDefault();
});
});
<select>
<option>Option!</option>
</select>
$(function() {
$('select').mousedown(function(event) {
event.preventDefault();
});
});