I am getting selected date as in Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time) format. I want to convert this in dd/MM/yyyy format. What have to do in jQuery?
Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time)
dd/MM/yyyy
if you want more powerfull date formatting, you can use date format function written by Steven Levithan here
var date = dateFormat(new Date("Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time)"), 'dd/mm/yyyy');
1.4m articles
1.4m replys
5 comments
57.0k users