JSFiddle - React, Tailwind, and code Playground

by Paul Smith

HTML

<div class="fancy-select">
    <select class="field">
        <option data-somedata="something" data-else="something else" value="some value">Hello</option>
    </select>
</div>

JavaScript

jQuery('.fancy-select .field option').each(function(){
    this.parentNode.appendChild(this.cloneNode());
});