When I click on the select element in chrome, the event does not get triggered on first click (but after that, i.e. on second, third...). Why and how can I change that? (works in FF)
$("select").click(function() {
console.log("click");
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select>
<option>a</option>
</select>
https://jsfiddle.net/pv2eajux/
Note: click on the text, not on the arrow