function copyPromoFunc() { var copyText = document.getElementById("copyPromo"); copyText.select(); document.execCommand("copy"); alert("Copied the text: " + copyText.value); } function showPromoPopup(id){ // open popup var el = $(id); if(el.length){ $.magnificPopup.open({ items:{ src: el }, type: "inline", closeOnBgClick: false, callbacks: { beforeClose: function() { setCookie('bShowPopup',1,90); setCookie('CartPopupCookie',1,90); } } }) } } function hidePromoPopup(id){ // close popup var el = $(id); if(el.length){ $.magnificPopup.close({ items:{ src: el }, type: "inline" }) } } setTimeout(function(){showPromoPopup('#discountPopup1')},5000);