-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
29 lines (26 loc) · 1.01 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// script.js
document.getElementById('questionForm').addEventListener('submit', function(event) {
event.preventDefault(); // Prevent the form from submitting normally
const questionInput = document.getElementById('questionInput').value;
if (!questionInput) {
alert('Please enter your question.');
return;
}
const resultContainer = document.getElementById('resultContainer');
resultContainer.classList.remove('result-hidden'); // Show the result container
fetch('https://clumsy-cod-overshirt.cyclic.app/webhook', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ message: questionInput }),
})
.then(response => response.json())
.then(data => {
document.getElementById('resultOutput').textContent = data.result;
})
.catch(error => {
console.error('Error:', error);
alert('An error occurred while processing your request.');
});
});