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

66
Views
Enter Key redirect

So, I want to be able to press enter while in a text field and be redirected to another page. Does anyone know how I can do this?

<input class="center" type="text"  style="font-size:20px; border:none; outline:none; " size="105" type="text" placeholder="Shrek" name="search" >

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

0

Edit: Replaced single and double quotes.

const search = document.querySelector('[name="search"]');

search.addEventListener('keyup', (e) => {
    if (e.code === 'Enter') {
        const url = 'https://example.com/';

        window.location.href = url;
    }
});
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!