$w.onReady(function () { // Customize your campaign numbers const goal = 50000; const raised = 18750; const endDate = new Date("2026-06-01"); // Calculate percent const percent = Math.min((raised / goal) * 100, 100); // Update UI $w("#fundingBar").value = percent; $w("#amountRaised").text = "$" + raised.toLocaleString(); $w("#goalAmount").text = "$" + goal.toLocaleString(); $w("#percentFunded").text = percent.toFixed(0) + "% Funded"; // Calculate days left const today = new Date(); const timeDiff = endDate - today; const daysRemaining = Math.ceil(timeDiff / (1000 * 3600 * 24)); $w("#daysLeft").text = daysRemaining + " Days Left"; });
top of page
bottom of page