Techn1c4l

Results 36 comments of Techn1c4l

I was able to reproduce the same behavior. I think this might be a bug. The reason is you have the option `positionCaretOnClick` set to the default value of `radixFocus`....

This is accepted behavior in Firefox since according to MDN, > Unlike the [input](https://developer.mozilla.org/en-US/docs/Web/API/Element/input_event) event, the change event is not necessarily fired for each alteration to an element's value. This...

I suggest you limit the `digits` option to 9-10. Most of the time you don't even need more than 2-3 decimal places, unless you are developing some scientific software where...

Fixed in c45a51b0fc142d737e81d21d1b32f4c1037ffdfa. @RobinHerbots please close this issue.

Confirming that, even the example from the documentation doesn't work: `jQuery('#field').inputmask({ 'alias': 'datetime', 'inputFormat': 'm \\months', escapeChar: '\\' });`

You can use `digitsOptional: true` to achieve that. It's supposed to be `true` by default, yet, unless you intentionally add it, it seems to have no effect.

What's your Inputmask version? I noticed "Inputmask 2" so I can assume you are using that ancient version of this library. If so, try updating to the latest beta by...

@RobinHerbots The last working version was 5.0.10-beta.10. Beta number 11 has this issue. @newmangreen Also be aware that Inputmask will be using the standard "MM" for months wildcard in the...

I've managed to recreate this issue on multiple versions (5.0.10-beta.0, 5.0.9-beta.50). The problem seems to be in the `digitsOptional` parameter. If you remove it, it works fine. My advice as...