Map of all single family homes in metro-Tucson. Colors are the decade of construction.
<script>
// 1. Look at the address bar of the web browser
const urlParams = new URLSearchParams(window.location.search);
// 2. Find the piece of information named "return_url"
const newsletterLink = urlParams.get('return_url');
// 3. If that information exists, put it onto our button
if (newsletterLink) {
const backBtn = document.getElementById('newsletter-back-btn');
if (backBtn) {
backBtn.setAttribute('href', newsletterLink);
}
}
</script>