While implementing autoNumeric js for thousand separation, I noticed that after entering a value and then focusing out to another field, the entered value gets erased. What could be causing this issue? Below is the code I used:
jQuery("#job_no").autoNumeric('init', {
aSep: '.',
aDec: ',',
aForm: true,
vMax: '9999999',
vMin: '-999999'
});