I need to create new Date from a string in format: dd-M-yyyy
example:
var dateStr = '16-Sep-2012';
var date = new Date(dateStr);
However IE isn't very happy with it and considers date value as NaN.
Would somebody recommend me or give me a reliable parser for that?
10x for your kind help, BR