Skip to content

Instantly share code, notes, and snippets.

@tisuchi
Created September 20, 2017 05:49
Show Gist options
  • Save tisuchi/bfabdb8e3a171d9b659befa4cc1941c7 to your computer and use it in GitHub Desktop.
Save tisuchi/bfabdb8e3a171d9b659befa4cc1941c7 to your computer and use it in GitHub Desktop.
Change the date format in Daterangepicker - tisuchi.com
<script type="text/javascript">
$('#calendar-field').daterangepicker(
{
locale: {
format: 'YYYY-MM-DD'
},
..... // other properties
},
function(start, end, label) {
// code
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment