JSFiddle - React, Tailwind, and code Playground

HTML

<select placeholder="Select your option">
    <option value="hurr">Durr</option>
</select>

JavaScript

$('select').each(function(){
    var select = $(this);
    var placeholder = $('<option/>').
        attr({
            value: '',
            disabled: 'true',
            selected: 'true'
        }).text(select.attr('placeholder')).prependTo(select);
    select.click(function(){
        placeholder.remove();
    });
});