Peer Coaching Circles Sign-up
<script> (function() { let lastHeight = 0; let resizeTimeout = null; window.addEventListener('message', function(e) { const iframe = document.getElementById('grasshopperForm'); if (iframe && e.data && e.data.type === 'resize' && e.data.height) { clearTimeout(resizeTimeout); resizeTimeout = setTimeout(function() { // Only update if height changed significantly if (Math.abs(e.data.height - lastHeight) > 10) { lastHeight = e.data.height; iframe.style.height = e.data.height + 'px'; } }, 150); } }); })(); </script></div></div>