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

179
Views
var no está definido si lo declaro window.onload

No puedo acceder a las funciones externas de argsButtons var y no sé por qué

HTML:

 <div class="args-container" id="args"> <button type="button" id="nuclear">click to see nuclear</button> <button type="button" id="geothermal">click to see geothermal</button> </div>

JavaScript:

 let argsButtons; window.onload = function(){ argsButtons = Array.from(document.getElementById("args").children); } //HERE IS THE ERROR (argsButtons is undefined) argsButtons.forEach(e => e.addEventListener("click", myFunc()))
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

¡No es necesario que cargues esos botones! simplemente puedes hacer esto:

 const argsContainer = document.querySelector('.args-container'); const argsButtons = argsContainer.querySelectorAll('button'); function myFunc() { console.log('clicked!') } argsButtons.forEach((button) => { button.addEventListener('click', myFunc); });
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!