JSFiddle - React, Tailwind, and code Playground
HTML
<label for="select">Select Element</label>
<br />
<select id="select" onfocus="this.select()">
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
JavaScript
$("label[for='select']").bind('touchend', function(e) {
var id = $(this).attr('for');
$('#'+id).focus();
});