Answer the question
In order to leave comments, you need to log in
How to disable the ability to send empty messages on pressing enter?
window.addEventListener ("keypress", function (e) {
if (e.keyCode === 13 && input.value != ''){
event.preventDefault();
socket.emit('событие', input.value);
input.value = '';
return false;
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question