The Patios of Chestnut Creek Website

“Your central hub and the official source for community updates, documents, and resident resources.”

document.addEventListener("click", function(e) { const listings = document.querySelector(".rtcl-listings"); if (!listings) return; const rect = listings.getBoundingClientRect(); // TOP BUTTON: Post Your Own Ad if (e.clientY >= rect.top && e.clientY <= rect.top + 60) { window.location.href = "https://thepatioschestnutcreek.com/wp-admin/post-new.php?post_type=rtcl_listing"; return; } // BOTTOM BUTTON: Return to Residents Only if (e.clientY >= rect.bottom - 60 && e.clientY <= rect.bottom) { window.location.href = "https://thepatioschestnutcreek.com/members-only/"; return; } });
Scroll to Top