Difference in days between two dates

We will take input from two calendars and find out the difference in days between them. First we will display two interlined calendars each connected to one textbox. User can select dates from these calendars.

Interlinked Calendars

These two calendars are interlinked so the selection of first one will set the lower limit for the second one. The selection of second one will set the upper limit for the first one. Once the user select the dates using two calendars , our script should execute and display the result. Here our full code of calculation for date difference will be triggered once the second calendar is selected or changed. You can change this to display on click of a button or any other event triggered by user.

We will read the selected date values first and store in a variable.
var t1=$('#date_picker1').val();
We will break the date variable by using split command to create an array with three elements. The first element will store date , second element will store month and third element will store Year. Based on the date format you used in the calendar this will change. If you are in mm-dd-yy format then first element will store month , second element will store date and third element will store year. Using this we will create date object.
t1=t1.split('-');
We will create Date object using these elements of the array. For this we require elements in the order of YYYY, mm, dd format.

We will subtract month by 1 as all calendar months are represented between 0 to 11 ( not 1 to 12 ). For example month of March should be 2 ( not 3 ) . Let us crate date object now.
dt_t1=new Date(t1[2],t1[1]-1,t1[0]); // YYYY,mm,dd format to create date object
By using getTime() function we will first convert the date collected from the calendars to milliseconds. This is the value passed in milliseconds from Jan 1st 1970.

Read more on how to use getTime

dt_t1_tm=dt_t1.getTime(); // time in milliseconds for day 1
Same way we will find out the mill seconds value generated for second date value.

var t2=$('#date_picker2').val();
t2=t2.split('-');
dt_t2=new Date(t2[2],t2[1]-1,t2[0]); // YYYY,mm,dd format to create date object
dt_t2_tm=dt_t2.getTime(); // time in milliseconds for day 2
Then we will find out the difference between two dates using this mill second values. We will find out number of mill seconds in a single day by using mill seconds, seconds, minutes and hours. Instead of calculating we can directly store the value as 86400000 ( mill seconds in a day )
var one_day = 24*60*60*1000; // hours*minutes*seconds*milliseconds
Now let us find out the difference and then divide by number of mill seconds in a day. The result of this division may contain negative value so we will use math abs function to get the absolute values.
var diff_days=Math.abs((dt_t2_tm-dt_t1_tm)/one_day) // difference in days
To show the result we have used one div tag and result is posted inside that.
$("#result").html("Difference in Days <span class='badge'>" + diff_days + "</span>");
$("#result").show();


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com



    Post your comments , suggestion , error , requirements etc here .







    Most Popular JQuery Scripts

    1

    Two dependant list boxes

    2

    Calendar with Date Selection

    3

    Data change by Slider

    4

    Show & Hide element


    JQuery Video Tutorials




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer