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

168
Views
var is undefined if i declare it window.onload

I can't access to argsButtons var outside functions and i don't know why

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

You don't need to get those button onload! you can simply do this:

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!