show timer between two dates using jquery
if i have two dates
start date is 10/08/2021 10:00AM
end date is 15/08/2021 10:00 PM
SajidHussa says: show timer jquery
show timer jquery
Do you want to display count down timer between two dates?
yes sir
Hi SajidHussa,
Refer below code.
HTML
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript"> $(function () { var endDate = "08-31-2021 10:00:00"; var lblTimer = $("[id*=lblTimer]"); var countDownDate = new Date(endDate).getTime(); var x = setInterval(function () { var now = new Date().getTime(); var distance = countDownDate - now; var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); $(lblTimer).html(days + "d " + hours + "h " + minutes + "m " + seconds + "s"); if (distance < 0) { clearInterval(x); $(lblTimer).html("EXPIRED"); } }, 1000); }); </script> <span id="lblTimer"></span> </body> </html>
Demo
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.