Possible Duplicate:
Difference in Months between two dates in JavaScript
Just don't know how to get the difference in moths between two time or date objects.
My current Code:
var start_time = plot_data[0][0]; // first array selector gets the pair, second: the time
var end_time = plot_data[plot_data.length - 1][0];
var time_range = end_time - start_time;
this would be nice:
var diff_in_months = time_range.months()?
=D