#How to use
It is very simple to use.
Download the plugin and the css on src and do it in your HTML head:
<link rel='stylesheet' href='directory/validator.css'>
<script src='directory/dateValidation.jquery.js'></script>
Then, in HTML body:
<label>Date:</label>
<input type='text' id='date' maxlength='10'>
<script>
$(function() {
$('#date').dateValidation();
});
</script>