I'm stacked with one problem.
I have an array of data ranges:
var range_date_off=['31/03/2013','03/04/2013'];
I need to convert this into this:
var dates_off=['31/03/2013','01/04/2013','02/04/2013','03/04/2013'];
I started doing it with a loop, but the problem becomes when the month jumps to the other, any idea?