JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<span>step 10, min 3</span>
<input id="test1" value="50">
<br>
<span>step 10, min 0</span>
<input id="test2" value="101">
<br>
<span>step 10, min 0</span>
<input id="test3" value="105">
JavaScript
$(document).ready(function()
{
$("#test1").spinner({step:10,min:3});
$("#test2").spinner({step:10,min:0,max:1000});
$("#test3").spinner({step:10,min:0,max:1000});
});