💬 Tanzeem Assistant
Salam 👋 Sawal select karein ya likhein.
Typing...
`;
chatBox.scrollTop = chatBox.scrollHeight;
setTimeout(()=>{
let bots = document.querySelectorAll(".bot");
bots[bots.length-1].remove();
let reply = getReply(input);
chatBox.innerHTML += `${reply}
`;
chatBox.scrollTop = chatBox.scrollHeight;
},600);
}
// Quick ask
function quickAsk(q){
document.getElementById("userInput").value = q;
sendMessage();
}
// Enter key
function handleKey(e){
if(e.key === "Enter"){
sendMessage();
}
}