I want to use any keystroke on the keyboard only as a trigger. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

I want to use any keystroke on the keyboard only as a trigger.

JS code. After pressing any key on the keyboard i want to do something, for example: document.write("Hello!"). I don't want to print this key, he serves only as a trigger of action. I've tried with: html: <input id="mess"> JS: let box = document.getElementById('mess'); box.addEventListener('keydown', (event) => {document.write("Hello!")}); but at the begining it opens text box on the page & prints out pressed key in this box. Any idea, please.

22nd Sep 2021, 10:28 AM
Janusz Bujak 🇵🇱 🇺🇦
Janusz Bujak 🇵🇱 🇺🇦 - avatar
1 Answer
0
It works! Could you please share me the code please
22nd Sep 2021, 12:45 PM
🇮🇱 Radin Masiha 🇮🇱
🇮🇱 Radin Masiha 🇮🇱 - avatar