Avatar of John S.
John S.Flag for United States of America

asked on 

Count Number of Weeks until a date

I need a way to display the number of weeks and days until a certain date ( in my case, August 30th ) to display in a DIV on out site:



Is there a Javascript solution to figure this out?

Thank you for looking.
JavaScriptjQuery

Avatar of undefined
Last Comment
Bill Prew
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of John S.
John S.
Flag of United States of America image

ASKER

Bill can you help me set the start date to right now? Then this will be perfect!
Avatar of Bill Prew
Bill Prew

moment() represents the current time.  I updated the example here:  https://jsfiddle.net/pydhj4ev/1/


»bp
Avatar of John S.
John S.
Flag of United States of America image

ASKER

this did it, thanks, Bill

[code]
var a = moment();
var b = moment('30/09/2018', 'DD/MM/YYYY');
var days = b.diff(a, 'days');
var weeks = b.diff(a, 'weeks');
document.getElementById("days").innerHTML = days
document.getElementById("weeks").innerHTML = weeks
[/code]

Wow what a nice library that is huh!
Avatar of Bill Prew
Bill Prew

Yes, it can be very helpful, and there is a lot to it.

(if you posted your last comment from a mobile device that is what the [code] formatting didn't work, it's a known problem currently...)


»bp
JavaScript
JavaScript

JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.

127K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo