Possible Duplicate:
Extending JavaScript's Date.parse to allow for DD/MM/YYYY (non-US formatted dates)?
Convert dd-mm-yyyy string to date
Entered date in text box is like '05/09/1985'(dd/mm/yyyy or dd-mm-yyyy or dd-mmm-yyyy) format and I wanted to convert this to 05-Sep-1985 (dd-MMM-yyyy) format, how could I achieve this? Note that the source format may be dd-mm-yyyy or dd/mm/yyyy or dd-mmm-yyyy format
To achieve this I have done following code I added
function GetDateFormat(controlName) {
if ($('#' + controlName).val() != "") {
var d1 = Date.parse($('#' + controlName).val());
if (d1 == null) {
alert('Date Invalid.');
$('#' + controlName).val("");
}
var array = d1.toString('dd-MMM-yyyy');
$('#' + controlName).val(array);
}
}
This code will returns 09-May-1985 but i wanted like 05-Sep-1985.