How to create, customize and remove popups
Learn how to create and trigger popups.Some readersHow to automatically open a popup after N seconds
In this guide, we'll walk you through the steps to set up an automatic popup to appear N-seconds after opening a page. Our popups function globally, meaning they exist on all pages regardless of whether they're utilized or not. You might find this guide useful: How to create popups Once you've created the popup you want, you can then configure it to open on your blog after a specified number of seconds have elapsed.Few readersHow to open popup on scroll
To make a popup appear when scrolling, you can use the following code: <script> const scrollPercentage = 70; window.addEventListener("load", () => { window.addEventListener("scroll", () => { const scrollTop = window.pageYOffset || document.documentElement.scrollTop; const windowHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight; const scrollPercent = (scrollTop / windowHeight) * 100; if (scrollPercent >= scrollPercentage) { uFew readers
