Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created September 14, 2016 08:53
Show Gist options
  • Save xto3na/457e5b846de53f591b7ade2ae686e817 to your computer and use it in GitHub Desktop.
Save xto3na/457e5b846de53f591b7ade2ae686e817 to your computer and use it in GitHub Desktop.
Date input format
$(".date-of-birth").on("blur", function () {
var str = $(".date-of-birth").val();
$(".date-of-birth").val(str.replace(/[^\/0-9]/g,''));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment