jQuery numericinput basic setup - maikelbos0/VDT GitHub Wiki
Include the following script files in your page(s). If you have installed the NuGet package you should find the script files in the Scripts folder.
<script type="text/javascript" src="Scripts/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="Scripts/jquery-numericinput.min.js"></script>
The plugin can be used to transform any text input into a numeric input simply by calling the numericinput
function on the jQuery object. It supports creating multiple numeric inputs at the same time for a jQuery object containing more than one element.
<input type="text" id="example-numericinput" />
<script type="text/javascript">
$('#example-numericinput').numericinput();
</script>