Last active
March 18, 2017 00:27
-
-
Save najlepsiwebdesigner/b71a309d6fe893486c6a to your computer and use it in GitHub Desktop.
Foundation datepicker basic example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" class="span2" id="dp1"> | |
<script> | |
$(function(){ | |
$('#dp1').fdatepicker({ | |
initialDate: '02-12-1989', | |
format: 'mm-dd-yyyy', | |
disableDblClickSelection: true, | |
leftArrow:'<<', | |
rightArrow:'>>', | |
closeIcon:'X', | |
closeButton: true | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good afternoon dear.
How can I include this datepicker in my page