//localStorage.removeItem('id_prospect') site34954788; var id_site = "site34954788"; var id_prospect = localStorage.getItem("id_prospectsite34954788"); function prepareFrame() { var ifrm = document.createElement("iframe"); ifrm.setAttribute("src", "https://mws-chat.sajorcompany.com/"); //ifrm.setAttribute("src", "http://localhost:5174/"); ifrm.setAttribute("id", "MyWebSite-Frame"); ifrm.style.width = "318px"; ifrm.style.border = "none"; ifrm.style.height = "94px"; ifrm.style.position = "fixed"; ifrm.style.bottom = "0px"; ifrm.style.right = "0px"; ifrm.style.maxHeight = "100vh"; ifrm.style.maxWidth = "100vh"; ifrm.style.zIndex = "999999999"; document.body.appendChild(ifrm); } prepareFrame(); frame_mywebsite = document.getElementById('MyWebSite-Frame'); //console.log(frame_mywebsite); actu_location = location.href; // id_prospect, id_site, location, function send_var() { frame_mywebsite.contentWindow.postMessage({ actu_location: actu_location, id_prospect: id_prospect, id_site: id_site, }, "*" ); } window.addEventListener("message", function(message) { if (message.data == 'go') { send_var(); } if (message.data.lien) { location.href = message.data.lien; } if (message.data == 'open_chat') { frame_mywebsite.style.width = "419px"; if (screen.width < 768) { frame_mywebsite.style.height = "93vh"; } else { frame_mywebsite.style.height = "602px"; } frame_mywebsite.style.maxHeight = "100vh"; frame_mywebsite.style.maxWidth = "100vw"; } if (message.data == 'close_chat') { console.log(message.data); frame_mywebsite.style.width = "96px"; frame_mywebsite.style.height = "94px"; frame_mywebsite.style.maxHeight = "100vh"; frame_mywebsite.style.maxWidth = "100vw"; } if (message.data == 'open_popup') { frame_mywebsite.style.width = "332px"; frame_mywebsite.style.height = "241px"; frame_mywebsite.style.maxHeight = "100vh"; frame_mywebsite.style.maxWidth = "100vw"; } if (message.data.id_prospect) { localStorage.setItem('id_prospect' + message.data.id_site, message.data.id_prospect); // localStorage.setItem('id_chat' + message.data.id_site, message.data.id_chat); // alert('supero' + message.data.id_prospect) } });