Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

212
Views
Show an Alert if the user write a determinate word in a window. (keyCodes event)

Is that possible with js keyCodes event to show an alert if the user write a determinate word? For example: the user is in homepage, write (without input) "Hello" and appear an alert like "Congratulation, you found the secret word!".

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You need to bind event listener and keep track of what was typed. Basic idea

const codes = {
  hello: () => console.log('hello there'),
  'funky chicken': () => window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
}

function hotKeyListener () {
  let str = '';
  let timeout;
  const msDelay = 400;
  
  window.addEventListener('keydown', function (evt) {
    if (timeout) window.clearTimeout(timeout);
    str += evt.key;
    const action = codes[str];
    if (action) {
      str = '';
      action();
    } else {
      timeout = window.setTimeout(() => str = '', msDelay);
    }
  });
}

hotKeyListener();

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!