I have date in the format
06-Feb-2013
But when i pass this date through function new Date()
like
var dateSample = "06-Feb-2013";
var d = new Date(dateSample);
alert(d);
I am getting different outputs in Chrome and Firefox like.
How to make my date format work in firefox also.?
I can't change the date format.
If the solution is in native Javascript, it will be good.
please help me?