Embeber Asistente

Código para embeber

<script>
    (function() {
        var iframe = document.createElement('iframe');
        iframe.src = 'https://tu-dominio.com/chat-embebido';
        iframe.style.position = 'fixed';
        iframe.style.bottom = '0';
        iframe.style.right = '0';
        iframe.style.width = '450px';
        iframe.style.height = '600px';
        iframe.style.border = 'none';
        iframe.style.zIndex = '9999';
        document.body.appendChild(iframe);
    })();
</script>

Vista previa

Instrucciones

  1. Copia el código de arriba
  2. Pega el código justo antes del cierre del tag </body> en tu sitio web
  3. Reemplaza "tu-dominio.com" con la URL real de tu sitio
  4. El chat aparecerá como una ventana flotante en la esquina inferior derecha
  5. Los usuarios pueden minimizar/maximizar el chat según lo necesiten