JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<body>
<div id="slider-range"></div>
</body>
JavaScript
$(function() {
$( "#slider-range" ).slider({
range: true,
min: 0,
max: 500,
step: 50,
values: [ 0, 500 ]
});
$( "#slider-range" ).width(150);
})();