labels

A dictionary containing the labels for the tooltips appearing for the spinners.

<input id="numeric" />

<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            min: 100,
            max: 1000,
            value: 300,
            step: 20,
            labels: {
                increase: "Order More",
                decrease: "Order Less"
            }
       });
    });
</script>