id_site='site85746742'; //localStorage.setItem('monChat', 'sajor'); //localStorage.removeItem('id_prospect'); var id_prospect = localStorage.getItem('id_prospectsite85746742'); var id_chat = localStorage.getItem('id_chatsite85746742'); function prepareFrame() { var ifrm = document.createElement("iframe"); ifrm.setAttribute("src", "https://sajorcompany.com/my-web-site/chat/chat_live.php"); 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, id_chat: id_chat, }, "*" ); } window.addEventListener("message", function(message) { //alert('message recu par le parent'); if(message.data=='go'){ send_var(); //console.log(message.data); } if(message.data.lien){ location.href=message.data.lien; //console.log(message.data); } if(message.data=='open_chat'){ //console.log(message.data); 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'){ //console.log(message.data); frame_mywebsite.style.width = "328px"; frame_mywebsite.style.height = "241px"; frame_mywebsite.style.maxHeight = "100vh"; frame_mywebsite.style.maxWidth = "100vw"; } if(message.data.id_prospect){ //this.alert('go'); localStorage.setItem('id_prospect'+message.data.id_site, message.data.id_prospect); localStorage.setItem('id_chat'+message.data.id_site, message.data.id_chat); //this.alert(localStorage.getItem('id_prospect'+message.data.id_site,)); } });