I am using jquery validation engine in my php reservation (booking) form. I want to change the date format as DD/MM/YYYY. and also change the month names in other languages.
How can I do that? Thanks in advance.
Change format of date use dateFormat as below:
$( ".datepicker" ).datepicker({
dateFormat:'dd/mm/yy'
});