JSFiddle - React, Tailwind, and code Playground

by alessandro_pezzato

HTML

<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<select id="vanilla">
<option value="x">x</option>
<option value="y">y</option>
</select>

<select id="jquery-ui">
<option value="x">x</option>
<option value="y">y</option>
</select>

JavaScript

$('#jquery-ui').selectmenu();

$('#vanilla').val('z');
$('#jquery-ui').val('z').selectmenu('refresh');