Personal I'm doing a time validation in Javascript . I can not type the following hours 14:00, 15:00, 16:00 until 20:00, but other hours with you.
I'm doing this:
var mask = "HH:MM",
pattern = {
'translation': {
'H': {
pattern: /[0-23]/
},
'M': {
pattern: /[0-59]/
}
}
};
$("#QuantidadeHoras").mask(mask, pattern);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.0/jquery.mask.min.js"></script>
<input type="text" id="QuantidadeHoras" />