-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatbot.js
19 lines (19 loc) · 1.02 KB
/
chatbot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
know={
"Hello":"         Hi there! Are you looking for a Job change?",
"Who are you?":"      I am Robot",
"How are you?":"      I am fine",
"No":"      Understood! There is special discount of upto 30% on our Paid Career Services. Would you like to explore?",
"Yes":"      Let me connect to an Agent. To begin with, Can you please share your name?",
"Subhajit Saha":"Hi Subhajit!. Thanks for your patience please wait while the line is beign connected to one of our agents....."
};
let talk=()=>{
var user=document.getElementById("userBox").value;
document.getElementById("userBox").value="";
document.getElementById("chatLog").innerHTML+=user+"<br>";
if (user in know){
document.getElementById("chatLog").innerHTML+=know[user]+"<br>";
}
else{
document.getElementById("chatLog").innerHTML+="      I dont understand...<br>";
}
}