I have FINALLY figured out how to add todays date in my website by using code: here is the code I used and it worked great:
const today = new Date();
// The next three lines format the way the date will appear
const options = {
day: “numeric”,
month: “long”,
year: “numeric”
};
// Sets the property of the text element to be a string representing today’s date in US English
$w(“#text48”).text = today.toLocaleDateString(“en-US”, options);
However, now I am needing to add 114 days to that date?
We are wanting the date to reflect 114 days in advance for breeding purposes, is there a way that I can do that?
Thanks in advance, I owe you one!
LA