Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

AwadGorg's avatar

change the input type date from MM/DD/YYYY to YYYY/MM/DD

Hello i have an input type date and it shows to the user like this MM/DD/YYYY and i want it to be like this YYYY/MM/DD

0 likes
1 reply
jeevamugunthan's avatar

i think you have datepicker just change your format like

$('#due_from').datepicker({
      format: "yyyy/mm/dd",
      todayHighlight: true,
      autoclose: true
    });

Please or to participate in this conversation.