Hi
below My code in ajax shows
if (!String.prototype.parseNETDate) {
String.prototype.parseNETDate = function () {
if (this.indexOf('-') == -1) {
return new Date(parseInt(this.slice(6, 19)));
} else {
return new Date(parseInt(this.slice(6, 20)));
}
};
}
out out is Tue Oct 10 1989 00:00:00 GMT+0530 (India Standard Time)
i want op in dd/MM/YYYY