It is possible to disable 'step' validation on input type number when using Parsley.js html5 validation (without change to type text....)
<input type="number" step="100" min="0" />
If I put "51" Inti this field, validation fail because It's not a multiple of 100 (step). How can I disable this default behavior ?