Skip to content

Instantly share code, notes, and snippets.

@najlepsiwebdesigner
Last active March 18, 2017 00:27
Show Gist options
  • Save najlepsiwebdesigner/b71a309d6fe893486c6a to your computer and use it in GitHub Desktop.
Save najlepsiwebdesigner/b71a309d6fe893486c6a to your computer and use it in GitHub Desktop.
Foundation datepicker basic example
<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>
@UNIONTIC
Copy link

Good afternoon dear.
How can I include this datepicker in my page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment