cara mengatur ulang auto numerik js untuk input

                $this.closest('form').on('reset.autoNumeric', function () {
                    holder = getHolder($this);
                    if (holder) {
                        $this.autoNumeric('wipe');
                        var reSet = function() {
                            $this.autoNumeric('set', $this.val());
                        };
                        setTimeout(reSet, 100);
                    }
                });
Mohammad Dream