How to use Kahoot! AI tools

Updated
Was this article helpful?
2228 out of 2501 found this helpful

Can't find what you're looking for? Our team is happy to help!

1 comment

  • hello

     

    Avatar
    amazon_turtle540
    0

Please sign in to leave a comment.

function startChat(field) { if (window.kindlyChat.open == false) { window.kindlyChat.openChat(); } setTimeout(function() { const message = document.getElementById(field); window.kindlyChat.sendMessage(message.value, {sender: "user"}); message.value = ''; }, 1000); } const chatBars = document.getElementsByClassName("chatbot-input"); for (let i = 0; i < chatBars.length; i++) { chatBars[i].addEventListener('keydown', function (event) { if (event.key === 'Enter') { startChat(chatBars[i].id); } }); }