document.addEventListener('DOMContentLoaded', function () {
let clickCount = 0;
const maxClicks = 3;
document.addEventListener('click', function () {
if (clickCount < maxClicks) {
clickCount++;
// Trigger your Popup Maker popup here
PUM.open(20650); // Use your popup ID here
}
});
// Optional: Reset clickCount when the page is refreshed
window.addEventListener('beforeunload', function () {
clickCount = 0;
});
});