jQuery Difference Between Two Dates in Hours Minutes and Seconds

Reading Time: 3 minutes
2,065 Views

Inside this article we will see the concept i.e jQuery Difference Between Two Dates in Hours Minutes and Seconds. Article contains classified information about calculating time difference in hours, minutes and seconds.

In this article we will use a jquery plugin i.e moment js. This plugin used in jquery to work with date time functions. We will use it to find the difference between two dates into Hours, Minutes.

Learn More –

Let’s get started.

Application Programming

Create a file called it as index.html inside any project folder. Open index.html and write this code into it.

<!DOCTYPE html>
<html>

<head>
    <title>Moment Difference Between Two Dates in Hours Minutes and Seconds</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" crossorigin="anonymous"></script>
</head>

<body>
    <div style="text-align: center;">

        <h2>Moment Difference Between Two Dates in Hours Minutes and Seconds</h2>

        <h3 id="datetime"></h3>
    </div>

    <script type="text/javascript">
        $(function() {

            var startTime = moment('02-01-2021 01:01:01', 'DD-MM-YYYY hh:mm:ss');
            var endTime = moment('03-01-2021 16:52:53', 'DD-MM-YYYY hh:mm:ss');

            var hoursDiff = endTime.diff(startTime, 'hours');
            var minutesDiff = endTime.diff(startTime, 'minutes');
            var secondsDiff = endTime.diff(startTime, 'seconds');

            datetime = 'Hours:' + hoursDiff + ', Minutes:' + minutesDiff + ', Seconds:' + secondsDiff;

            $("#datetime").html(datetime);
        });
    </script>
</body>

</html>

Concept

var startTime = moment('02-01-2021 01:01:01', 'DD-MM-YYYY hh:mm:ss');
var endTime = moment('03-01-2021 16:52:53', 'DD-MM-YYYY hh:mm:ss');

var hoursDiff = endTime.diff(startTime, 'hours');
var minutesDiff = endTime.diff(startTime, 'minutes');
var secondsDiff = endTime.diff(startTime, 'seconds');

Application Testing

Now,

Open into browser.

URL: http://localhost/moment-js/index.html

We hope this article helped you to learn jQuery Difference Between Two Dates in Hours Minutes and Seconds Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more