Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 468 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 468 Bytes

jQuery DateValidator

#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>