How to change the date format in Jquery/Javascript?
I've downloaded the date.js. Then, I follow below example:
var d1 = Date.parse('2010-10-18, 10:06 AM');
alert(d1.toString('dd/mm/yyyy HH:mm:ss GMT'));
So I write my own code for following date:
Thu Jan 31 2013 16:29:30 GMT+0700 (WIT)
var d1 = Date.parse("Thu Jan 31 2013 16:29:30 GMT+0700 (WIT)");
alert(d1.toString('dd/mm/yyyy'));
My logcat prints this:
CordovaLog(31455): Uncaught RangeError: toString() radix argument must be between 2 and 36
I use Phonegap for my android application.