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

170
Views
Search button wont use onclick

I have this js file coded and when I try to call to my search button, nothing happens when I click the button! No error or anything just a clickable button. Any help? index.hbs my search bar and button

input type="text" id="search-text" placeholder="Search.." name="search">
  <button type="submit" id="search-button"><i class="fa fa-search" id="search-button"></i></button>
            

frontend.js

function executeSearch(){
    let searchTerm= document.getElementById('search-text').value;
    if(!searchTerm){
        location.replace('/');
        return;
    }
    let mainContent= document.getElementById('main-content');
    let searchUrl = `/posts/search?search=${searchTerm}`;
    fetch(searchUrl)
    .then((data) =>{
        console.log(data);
    })
    .catch((err) =>console.log(err));
}

const {execute} = require("../../config/database");

let searchButton = document.getElementById('search-button');
if(searchButton){
    searchButton.onclick = executeSearch;
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

im starting with this. Sorry if i could not help. Instead of this:

if(searchButton){
    searchButton.onclick = executeSearch;
}

you could try:

searchButton.addEventListener('click',executeSearch());

Im editing this because looking to the previous comment i think im wrong understanding your problem but im leaving this here maybe help somebody.

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!