JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<div data-role="content">
<div data-role="rangeslider" id="DateSlider">
<input type="range" name="range-1a" id="range-1a" min="0" max="364" value="127" step="3">
<input type="range" name="range-1b" id="range-1b" min="1" max="365" value="253" step="3">
</div>
CSS
input.ui-input-text.ui-slider-input {
display: none;width:0px;
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track {
background: red;
}
.ui-rangeslider .ui-rangeslider-sliders{
margin: 0px;
}
}