How set the datepicker in moment.js to yyyy-mm-dd?

Member

by denis , in category: Javascript , a year ago

How set the datepicker in moment.js to yyyy-mm-dd?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by scotty_walker , a year ago

@denis 

To set the format of the datepicker in moment.js to "yyyy-mm-dd", you can use the format() method. Here's an example:

1
2
3
4
5
6
7
// Assuming you have a datepicker element with the id "datepicker"
var datepicker = document.getElementById("datepicker");

// Set the date format to "yyyy-mm-dd"
$(datepicker).datepicker({
  format: "yyyy-mm-dd"
});


Make sure you have the datepicker library (e.g., jQuery UI datepicker) included in your project and that you have already imported the necessary JavaScript files.

Related Threads:

How to add days using moment.js with format of mm/dd/yyyy?
How to convert 'dd-mm-yyyy' to 'dd-mmm-yyyy' in postgresql?
How to convert timestamp to yyyy-mm-dd hh24:mi:ss format in oracle?
How to convert yyyy-mm-dd hh:mm:ss to hh:mm:ss in mysql?
How to convert strings to a 'mm/dd/yyyy' format in teradata?
How to insert date in yyyy-mm -dd hh24:mi:ss in oracle?