Skip to content

Instantly share code, notes, and snippets.

@b-aleksei
Last active March 1, 2021 11:17
Show Gist options
  • Save b-aleksei/2dd11ed5ce9a9152a4d8e0fc34eaf599 to your computer and use it in GitHub Desktop.
Save b-aleksei/2dd11ed5ce9a9152a4d8e0fc34eaf599 to your computer and use it in GitHub Desktop.
DateInputMask
input.addEventListener('keypress', function(e) {
if(/\D/.test(e.key)) {
e.preventDefault();
}
const len = input.value.length;
if(len === 1 || len === 4) {
setTimeout(() => {
input.value += '/';
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment