jQuery numericinput events - maikelbos0/VDT GitHub Wiki
The jQuery-numericinput provides events that you can subscribe to with the jQuery syntax.
<script type="text/javascript">
$('#example-input').on('numericinput.error', function (event) {
console.log("An invalid value was input");
})
</script>
-
numericinput.errorfires whenever a user puts an invalid value into the input field