Hi,
I'm trying to convert a date like 06 jan 2013 to 01/06/2013 with some javascript/jQuery.
I've search a lot, but can't find much on converting month names to digits.
i'm using it like this: #startdate = 06 jan 2013
var start = new Date($("#startdate").val());
should become:
#startdate = 01/06/2013
var start = new Date($("#startdate").val());
Thanks!