2024 PaulieStrong Drive For A Cure Golf Outing & Fundraising Dinner
days
hours
minutes
seconds
Join the fight against Childhood Cancer by joining us for an amazing day of Brunch, Golf, Cocktails and an Elegant Fundraising Dinner complete with Raffles and a Very exciting Silent Auction *Sponsorship Opportunities Available* Since our inception in 2016 The PaulieStrong Foundation has raised over 2.5 Million Dollars in research funding
2580382300000086
$(document).ready(function() {
// Set the date we're counting down to in PST (Pacific Standard Time)
var countDownDate = new Date("September 30, 2024 10:00:00 GMT-0700").getTime();
// Update the countdown every 1 second
var x = setInterval(function() {
// Get the current date and time
var now = new Date().getTime();
// Find the distance between now and the countdown date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
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);
// Display the countdown in the element with id="countdown"
$("#days").text(days);
$("#hours").text(hours);
$("#minutes").text(minutes);
$("#seconds").text(seconds);
// If the countdown is finished, write some text
if (distance < 0) {
clearInterval(x);
$("#countdown").html("EXPIRED");
}
}, 1000); // Update every 1 second
});