NumberPicker

by hmdadou

HTML

<link rel="stylesheet" href="https://github.com/dustinpoissant/jquery.dpNumberPicker/blob/master/src/dpNumberPicker-2.x-skin.grey.css">
<script src="https://github.com/dustinpoissant/jquery.dpNumberPicker/blob/master/src/dpNumberPicker-2.x.js"></script>
<script src="https://code.jquery.com/jquery-2.2.2.min.js"></script>
<div id='np'></div>

JavaScript

$(document).ready(function(){
			dpUI.numberPicker("#np", {
				min: 0,
				max: 10,
				step: 0.25,
				format: "#.##",
				formatter: function(x){
					return "$ "+x;
				}
			});
		});