How to get date difference in days with jquery?

·

jquery

Hello, welcome to therichpost.com. In this post, I will tell you How to get date difference in days with jquery? I personally like jquery very much. Most of my code is full with jquery. When I stuck in php or other language then that stuckness I remove with jquery code.

Here is the working code and you need add this into your jquery script:

var depDateFull = $(‘.departureDate’).val();
var retDateFull = $(‘.returnDate’).val();
var sdt = new Date(depDateFull);
var rdt = new Date(retDateFull);
var diff = new Date(rdt – sdt);
var days = diff/1000/60/60/24;
alert(days);//you will difference in days

There are so many jquery code and css tricks and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com

Comments

One response to “How to get date difference in days with jquery?”

  1. jasmeen Avatar
    jasmeen

    //Date diff perfectly
    var end = new Date($(“#endDailyDate”).val());
    var start = new Date();
    var diff = new Date(end – start);
    var days = diff/1000/60/60/24;
    alert(Math.round(days));

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.