JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<link href="http://code.jquery.com/ui/jquery-ui-git.css" rel="stylesheet">
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<div id="progressbar"></div>
<div id="output"></div>
CSS
* {
box-sizing: border-box;
}
JavaScript
$( "#progressbar" ).progressbar({
value: 50
});
$( "#output" ).text(
$( ".ui-progressbar-value" ).attr( "style" )
);