var section = document.createElement('section'); section.className = 'avenue-messenger minimized'; document.getElementsByTagName('body')[0].appendChild(section); section.innerHTML = `
`; function myInitFunction() { fetch("https://api.pamsolucoes.com.br/mantevida/chat") .then(response => response.text()) .then(html => { document.getElementById("div_chat_content").innerHTML = html; }) .catch(error => console.error('Erro ao carregar conte�do:', error)); } function InitJS(){ var script = document.createElement('script'); script.type = 'text/javascript'; script.id = "script_chat_pam2"; script.src ="https://api.pamsolucoes.com.br/mantevida/static/js/main.js" document.getElementsByTagName('body')[0].appendChild(script); var script1 = document.createElement('script'); script1.type = 'text/javascript'; script1.id = "script_chat_pam2"; script1.src ="https://api.pamsolucoes.com.br/mantevida/static/js/InnerFormValidation.js" document.getElementsByTagName('body')[0].appendChild(script1); } setTimeout(function() { myInitFunction(); }, 3000); setTimeout(function() { InitJS() }, 4000);