The Grand Strand: The 2026 Myrtle Beach Golf Guide
With over 80 courses and legendary seafood, here is how to master the Golf Capital of the World.
Beach Rounds. Zero Stress.
Build a custom Myrtle Beach itinerary and find the best coastal stays in seconds.
Your Next Golf Getaway
Curated by Bogey Golf AI
`;
let webHtml = html;
const day5Tag = 'Day 5';
if (webHtml.includes(day5Tag)) { webHtml = webHtml.replace(day5Tag, midCTA + day5Tag); } else { webHtml = webHtml + midCTA; }
container.innerHTML = webHtml;
// DYNAMIC LINK UPDATES FOR FOOTER BUTTONS
const itineraryLinks = container.querySelectorAll('a');
let carLinkHref = "https://www.hotels.com/car-rental";
let hotelLinkHref = "https://www.hotels.com/?cid=7652440";
itineraryLinks.forEach(link => {
const linkText = link.textContent.toLowerCase();
const href = link.getAttribute('href');
if (linkText.includes('rental car')) {
const footerCarBtn = document.querySelector('.report-footer-cta a[href*="hotels.com/car-rental"]');
if (footerCarBtn) footerCarBtn.href = href.replace(/&/g, '&');
carLinkHref = href.replace(/&/g, '&');
}
if (linkText.includes('hotel name') || linkText.includes('view all') || linkText.includes('resort')) {
const footerHotelBtn = document.querySelector('.report-footer-cta a[href*="hotels.com/?cid="]');
if (footerHotelBtn) footerHotelBtn.href = href.replace(/&/g, '&');
hotelLinkHref = href.replace(/&/g, '&');
}
});
// EMAIL VERSION (Plain Text Links)
const emailTextLinks = `
Ready to book? Use these links:
`;
let emailHtml = html;
if (emailHtml.includes(day5Tag)) { emailHtml = emailHtml.replace(day5Tag, emailTextLinks + day5Tag); emailHtml = emailHtml + emailTextLinks; }
else { emailHtml = emailHtml + emailTextLinks; }
currentItineraryHtml = summaryHtml + emailHtml;
overlay.style.display = 'block';
}