Skip to Content
Wish for Wheels
Team Build & Give
Enroll your School
Donate
Shop
Blog
In the News
Our Mission and Story
Meet the Team
Board of Directors
Ambassadors
FAQ
Our BIG Wish
0
0
PARTNER WITH US
Wish for Wheels
Team Build & Give
Enroll your School
Donate
Shop
Blog
In the News
Our Mission and Story
Meet the Team
Board of Directors
Ambassadors
FAQ
Our BIG Wish
0
0
PARTNER WITH US
Folder: Get Involved
Back
Team Build & Give
Enroll your School
Donate
Shop
Folder: News & Articles
Back
Blog
In the News
Folder: About us
Back
Our Mission and Story
Meet the Team
Board of Directors
Ambassadors
FAQ
Our BIG Wish
PARTNER WITH US

Wish for Wheels is a 501(c)(3) organization.
EIN: 59-3803048

Follow us

Let's connect!

Subscribe to our newsletter for all things employee engagement.

We respect your privacy.

Thank you!

Privacy Policy

Copyright 2004-2026. All rights reserved.

// --- Script to Set Cookies (Runs on Page Load) --- function setCookie(name, value, days) { const expires = new Date(); expires.setTime(expires.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = name + "=" + value + ";expires=" + expires.toUTCString() + ";path=/"; } function getUrlParam(name) { const urlParams = new URLSearchParams(window.location.search); return urlParams.get(name); } document.addEventListener('DOMContentLoaded', function() { const utmParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term']; utmParams.forEach(param => { const value = getUrlParam(param); if (value) { setCookie(param, value, 30); // Store for 30 days } }); }); // --- Script to Read Cookies & Fill Fields (Runs on DOM Ready/Form Interaction) --- function getCookie(name) { const nameEQ = name + "="; const ca = document.cookie.split(';'); for(let i=0; i < ca.length; i++) { let c = ca[i]; while (c.charAt(0) === ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length); } return null; } document.addEventListener('DOMContentLoaded', function() { const utmParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term']; utmParams.forEach(param => { const cookieValue = getCookie(param); if (cookieValue) { // Find your hidden field by name (e.g., name="UTM_Source") const hiddenField = document.querySelector(`input[name="UTM_${param.replace('utm_', '').toUpperCase()}"]`); if (hiddenField) { hiddenField.value = cookieValue; } } }); });