up vote 15 down vote favorite
4
share [g+] share [fb]

I'm creating an application which lets you define events with a time frame. I want to automatically fill in the end date when the user selects or changes the start date. I can't quite figure out, however, how to get the difference between the two times, and then how to create a new end Date using that difference.

link|improve this question

55% accept rate
feedback

6 Answers

up vote 10 down vote accepted

In JavaScript, dates can be transformed to the number of milliseconds since the epoc by calling the getTime() method or just using the date in a numeric expression.

So to get the difference, just subtract the two dates.

To create a new date based on the difference, just pass the number of milliseconds in the constructor.

var oldBegin = ...
var oldEnd = ...
var newBegin = ...

var newEnd = new Date(newBegin + oldEnd - oldBegin);

This should just work

EDIT: Fixed bug pointed by @bdukes

link|improve this answer
feedback

If you don't care about the time component, you can use .getDate() and .setDate() to just set the date part.

So to set your end date to 2 weeks after your start date, do something like this:

function GetEndDate(startDate)
{
    var endDate = new Date(startDate.getTime());
    endDate.setDate(endDate.getDate()+14);
    return endDate;
}

To return the difference (in days) between two dates, do this:

function GetDateDiff(startDate, endDate)
{
    return endDate.getDate() - startDate.getDate();
}

Finally, let's modify the first function so it can take the value returned by 2nd as a parameter:

function GetEndDate(startDate, days)
{
    var endDate = new Date(startDate.getTime());
    endDate.setDate(endDate.getDate() + days);
    return endDate;
}
link|improve this answer
4  
GetDateDiff() will break across month barriers. For example, 2011/04/26 and 2011/05/01 will return -25, but the offset should be 5 days. – nfm Apr 26 '11 at 1:40
feedback

Thanks @Vincent Robert, I ended up using your basic example, though it's actually newBegin + oldEnd - oldBegin. Here's the simplified end solution:

    // don't update end date if there's already an end date but not an old start date
    if (!oldEnd || oldBegin) {
        var selectedDateSpan = 1800000; // 30 minutes
        if (oldEnd) {
            selectedDateSpan = oldEnd - oldBegin;
        }

       newEnd = new Date(newBegin.getTime() + selectedDateSpan));
    }
link|improve this answer
feedback

If you use Date objects and then use the getTime() function for both dates it will give you their respective times since Jan 1, 1970 in a number value. You can then get the difference between these numbers.

If that doesn't help you out, check out the complete documentation: http://www.w3schools.com/jsref/jsref_obj_date.asp

link|improve this answer
feedback
function checkdate() {
    var indate = new Date()
    indate.setDate(dat)
    indate.setMonth(mon - 1)
    indate.setFullYear(year)

    var one_day = 1000 * 60 * 60 * 24
    var diff = Math.ceil((indate.getTime() - now.getTime()) / (one_day))
    var str = diff + " days are remaining.."
    document.getElementById('print').innerHTML = str.fontcolor('blue')
}
link|improve this answer
feedback

I would like to point out an error that i encountered due to date format from a date picker. Using a format like dd/mm/yyyy wont give the correct date. Use the following

    t1="01/11/2011" ;
    t2="28/11/2011";
    var one_day=1000*60*60*24; 

Here we need to split the inputed dates to convert them into standard format

    var x=t1.split("/");     
    var y=t2.split("/");

Date format(Fullyear,month,date) . This will

    var date1=new Date(x[2],(x[1]-1),x[0]);  
    var date2=new Date(y[2],(y[1]-1),y[0]);
    var month1=x[1]-1;
    var month2=y[1]-1;        

Calculate difference between the two dates, and convert to days

    _Diff=Math.ceil((date2.getTime()-date1.getTime())/(one_day)); 

_Diff gives the diffrence between the two dates.

link|improve this answer
This doesn't appear to be an answer to the question, and only tangentially related to the topic (this questions is about dealing with Date objects in JavaScript, not with parsing text to create Date objects). If this is an actual answer that you're posting with a differing method from the other answers, it isn't clear what that difference is. This may best be represented by a comment instead of an answer, or by another question altogether. If you have questions about what content belongs where, stackoverflow.com/faq might be helpful to you. Hope you enjoy the site! – bdukes Nov 28 '11 at 19:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.