У меня есть код, мне надо что бы он срабатывал когда вводишь текст в input и жмешь Enter(И что бы была проверка, тот ли текст введен). Этот код почему то не работает(Ошибка 'Uncaught ReferenceError: chatinput is not defined at rain-script.js:66'):
HTML:
<div id="chat" style="display: none;"><form id = 'chatinput'><input type="text" name="chat"></form></div>
CSS:
#chat {
position: absolute;
bottom: 1px;
}
JS:
var varChat = d.getElementById("chat");
d.addEventListener('keydown', pressKey);
function pressKey(event) {
var key = event.keyCode;
if (key == 84) { //Button 'T'
chat.style.display = 'inline';
}
else if (key == 13) {
chat.style.display = 'none'; //Enter
}
}
var varInput = d.getElementById('chatinput');
if (chatinput.value == '/weather clear') {
var ctx = 0
}
pressKey();