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

190
Views
How to trigger button on html file when else statement condition is met on .js file

I have had a play around with this code which essentially automatically presses the reset button in the html file when the word is guessed correctly, but I cannot get it to work, the id of the button is reset. It is a guessing game, I want it to reset automatically when the word is guessed. The two $ scripts are my attempt at getting this to work

get statusMessage() {
if (this.status === 'playing'){
return `Nice try! The word was "${this.word.join('')}"`
    return `Guesses left: ${this.remainingGuesses}`
} else if (this.status === 'failed') {   
streak.innerHTML = 0
    return `Nice try! The word was "${this.word.join('')}"```

} else { 
streak.innerHTML ++
return 'Great work! You guessed the word!'
$('#reset').trigger('click');
$('#reset').click();
}

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

0

$('#reset').click(); will work if you write it before return statement like this:

 else { 
    streak.innerHTML ++
    $('#reset').click();
    return 'Great work! You guessed the word!'
 }
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!