Last active
March 23, 2016 10:34
-
-
Save najlepsiwebdesigner/f921f23f5bf3e9286acf to your computer and use it in GitHub Desktop.
Foundation datepicker Time picking enabled and Vietnamese language used
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" value="02-12-1989 12:05" id="dpt"> | |
<script> | |
$(function(){ | |
$('#dpt').fdatepicker({ | |
format: 'mm-dd-yyyy hh:ii', | |
disableDblClickSelection: true, | |
language: 'vi', | |
pickTime: true | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment