Configurar formato de fecha
$("#fecha").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'dd/mm/yy', //Se especifica como deseamos representarla
firstDay: 1
});
<input type="text" id="fecha" />
Conteúdo para você se capacitar em programação
Configurar formato de fecha
$("#fecha").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'dd/mm/yy', //Se especifica como deseamos representarla
firstDay: 1
});
<input type="text" id="fecha" />