var notificationObj; var btn = document.getElementById('ct_popup_btn'), parentWrapper = document.querySelector('.ct-popup'), wrapper = window.parent.document.getElementById('wizParDiv2'), closeBtn = document.querySelector('.ct-popup__close-icon'), // Targeting the div now redirectionUrl = 'https://www.bajajmall.in/fan?utm_source=ct&utm_medium=popup&utm_campaign=DPPM_B2B_OAP_B2B_NORM_IWP_CD-GROWTH_ALL_NA_NA_NA_Fans_ADP_ENG'; window.parent.clevertap.popupCallback = (notificationData) => { notificationObj = notificationData; }; function closePopUp() { setTimeout(() => { wrapper.remove(); }, 0); parentWrapper.classList.add('hidden'); // Hide the popup } function submit_pressed() { window.parent.clevertap.event.push("click", { "Page name": document.URL, "event_type": "button_click", "section_title": document.title, "event_condition": "True", "click_text": "Button", "source": "Web Pop-up" }); /* Get notificationObj msgId value, i.e. campaignId_date */ var CT_msgId; try { CT_msgId = window.parent.clevertap.popupCurrentWzrkId;; } catch (err) { CT_msgId = "NA"; } /* Last Click Cookie Update */ var domain = location.hostname.replace("www", ""); var tvc_click_Text = window.location.pathname + " > " + "CT Pop-up_" + CT_msgId + " > " + btn.innerText; var tvc_value = '{"click":"' + tvc_click_Text + '"}'; document.cookie = 'LastClickCookie=' + tvc_value + ';domain=' + domain + ';path=/'; if (window.parent.openLoginPopup) { window.parent.openLoginPopup(`${redirectionUrl}#ct`); } closePopUp(); } setTimeout(() => { /* Do not show CT popup if Login Modal is open */ var a = window.parent.isModalOpen; if (!a) { parentWrapper.classList.remove('hidden'); } }, 0); setTimeout(() => { closePopUp(); }, 10000); btn.addEventListener('click', submit_pressed); // Change the event listener to target the parent div closeBtn.addEventListener('click', closePopUp); /* Listen to 'closeme' message from parent window to close the popup */ window.addEventListener('message', (event) => { if (event.data == "closeme") { closePopUp(); } }, false);