popup-trigger
.To implement a full-screen Typeform popup in Webflow, while hiding the actual link, you can embed the Typeform as a hidden element and trigger it with a Webflow interaction. Here's how to do it step by step:
popup-trigger
).<a href="...">
part — you’ll simulate the click with custom JavaScript.Avoid using a visible <a>
tag from Typeform.
Instead, paste only the Typeform popup trigger JavaScript in Webflow’s Footer or Embed element, like:
Load the embed script:
<script src="https://embed.typeform.com/embed.js"></script>
Add a custom script to trigger the popup on button click (make sure this is inside a <script>
tag):
**`document.querySelector('.popup-trigger').addEventListener('click', function() {
window.typeformEmbed.makePopup('https://yourform.typeform.com/to/abc123', {
mode: 'fullscreen',
autoClose: 3,
hideHeaders: true,
hideFooters: true,
}).open();
});`**
Replace 'https://yourform.typeform.com/to/abc123'
with your own Typeform URL.
To hide a Typeform link and show it as a full-screen popup on button press in Webflow, use custom JavaScript to trigger the Typeform embed instead of directly linking to it. Embed the Typeform script in your Footer and use an interaction or event listener on a custom button to open the popup manually.