Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener("DOMContentLoaded", function () {
const widget = document.getElementById("seal-subscription-widget");
if (widget) {
widget.style.display = "none"; // Ẩn widget khi trang vừa tải
let hasShown = false;
window.addEventListener("scroll", function () {
const scrollY = window.scrollY;
// Khi người dùng cuộn hơn 300px thì hiển thị widget lại (tùy chỉnh được)
if (scrollY > 300 && !hasShown) {
widget.style.display = "block";
hasShown = true;
}
});
}
});