Hi, I am using jquerry to display the calender to pick the date in my mvc application. i need to display the date in the converted format depending upon the browsers settings. if its newzeland, then i need to show the dateformat based on their language. how to do this?
below is my javascript
$(function() {
$('#StartDate').datepicker({
showOn: 'button', '/i/CalendarIcon.png', buttonImageOnly: true
});
$('#EndDate').datepicker({
showOn: 'button', '/i/CalendarIcon.png', buttonImageOnly: true
});
});