Skip to main content
Privacy notice
We use cookies and similar technologies to remember your preferences and keep you logged in (“essential” cookies); to measure effectiveness of our campaigns and analyze depersonalized data to improve performance of our site (“non-essential” cookies). By choosing “Accept only essential cookies”, you consent to the use of only the technically necessary essential cookies. By choosing “Accept all cookies”, you consent to the use of all the cookies. You can change your cookie preferences anytime by clicking “Cookie settings” at the bottom of the site.
Accept All Cookies
Accept Only Essential Cookies
JOIN OUR TEAM
Menu
SHOP
STORE INFO
JOIN OUR TEAM
BOOK SELF WASH
OUR PHILOSOPHY
619-435-3513service@wagntailscoronado.com
Terms & ConditionsPrivacy PolicyShipping & Payment InfoReturn PolicyAbout Us
Cookie settings
Report abuse
// 7. Shrinking Header on Scroll window.addEventListener('scroll', () => { const header = document.querySelector('header'); if (window.scrollY > 50) { header.classList.add('scrolled'); } else { header.classList.remove('scrolled'); } });