window.addEventListener('load', function () { let head = document.getElementsByTagName('head')[0]; let body = document.getElementsByTagName('body')[0]; let link = document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = '//chatbot.legalshield.com/styles/iframe.css'; head.appendChild(link); let iframe = document.createElement('iframe'); iframe.setAttribute('id', 'chatbotIFrame'); iframe.setAttribute('class', 'minimized'); iframe.setAttribute('frameborder', '0'); iframe.setAttribute('allowtransparency', 'true'); iframe.setAttribute('src', '//chatbot.legalshield.com/?x-chatbot-name=Erin'); body.appendChild(iframe); window.addEventListener('message', function(e) { if(iframe.src.indexOf(e.origin) > -1) { if (e.data.class) { iframe.classList.toggle(e.data.class); } if (e.data.options && window.dataLayer) { dataLayer.push(e.data.options); } } }); }, false);