html js reset input number code example
Example: how to reset auto numeric js for 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);
}
});