How to host kahoots remotely?

Updated

6 comments

  • No you have to tell them the Game Pin!

     

    Avatar
    Inactive user
    5
  • Check out #Tape999 

     

    Avatar
    Inactive user
    4
  • the game pin is 32901655

    Avatar
    Inactive user
    0
  • okay

    Avatar
    Inactive user
    3
  • PIN IS 40910

     

    Avatar
    Inactive user
    4
  • can i going olease

    Avatar
    Inactive user
    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); } }); }