change

The change event is fired after the value of the NumericTextBox is changed through the keyboard or increased/decreased by clicking on the spinners with the mouse.

<input id="numeric" />
<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            min: 100,
            max: 1000,
            step: 100,
            value: 500,
            events: {
                change: function(e) {
                    console.log("The new value is: " + e.value);
                }
            }
        });
    });
</script>