LIVE TRACKERUpdated

Embed the Tracker

Drop a live, auto-updating Trump Golf Tracker into any blog post, newsletter, or sidebar. The widget shows today's status, total golf days, share of term, and estimated taxpayer cost — and links back to the full tracker. Free to use with attribution.

1. Iframe (recommended)

One line of HTML. Works in any CMS that allows raw HTML or iframes (WordPress, Ghost, Substack paid tier, Medium publications, custom sites). Auto-updates whenever the source page rebuilds.

<iframe src="https://istrumpgolfing.today/embed/widget/" width="360" height="220" loading="lazy" title="Is Trump Golfing Today?" style="border:0;border-radius:12px;max-width:100%" ></iframe>

Live preview

2. JavaScript snippet

Renders directly into your page DOM (no iframe). Useful when your host blocks iframes or you want to restyle the widget. Pulls fresh numbers from https://istrumpgolfing.today/stats.json on every page load.

<div id="trump-golf-widget"></div> <script> (function() { fetch('https://istrumpgolfing.today/stats.json') .then(res => res.json()) .then(data => { const widget = document.getElementById('trump-golf-widget'); widget.innerHTML = ` <div style="border: 1px solid #333; border-radius: 8px; padding: 15px; max-width: 300px; font-family: sans-serif; background: #1a1a1a; color: #fff;"> <h3 style="margin: 0 0 10px 0; color: #ffa500;">Trump Golf Tracker</h3> <p style="margin: 5px 0;"><strong>${data.totalGolfDays}</strong> days golfed</p> <p style="margin: 5px 0; color: #aaa;">Cost: ~$${(data.estimatedTotalCost/1000000).toFixed(1)}M</p> <a href="https://istrumpgolfing.today" style="color: #ffa500; font-size: 0.8rem;">View Full Tracker &rarr;</a> </div> `; }) .catch(console.error); })(); </script>

Preview

Trump Golf Tracker

126 days golfed

Cost: ~$108.7M

View Full Tracker →

Notes

  • The iframe widget is responsive down to ~280px wide. Set width="100%" if you want it to fill its container.
  • Status updates daily as the source dataset is refreshed. The YES/NO answer rolls over at midnight Eastern Time.
  • Attribution is appreciated — please leave the "View live tracker" link visible.