JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/jquery-ui-git.css">
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<div id="slider"></div>
CSS
body { padding: 20px; }
JavaScript
$( "#slider" ).slider({
range: "max",
animate: "slow",
min: 0,
max: 100,
values: 50
});