Estamos listos para ayudarte.

Comunícate con nosotros si tienes dudas o consultas.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Contáctanos por teléfono.

(+34) 919 034 428

Escríbenos por correo.

clientes@taclia.com
document.querySelector('#submit-btn').addEventListener('click', async function(e) { e.preventDefault(); const message = document.querySelector('#input-text').value; const response = await fetch('https://hook.eu2.make.com/y7pfjkvxxmavfbso5b3xma4yaeruj1xh', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ input: message }) }); const data = await response.json(); // Mostrar respuesta en el chat document.querySelector('#chat-response').innerText = data.output; });