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

140
Views
el menú de hamburguesas no se expande cuando se hace clic

Traté de hacer un menú de hamburguesas.

Aquí está mi HTML:

 <nav> <h3>Life Below Water</h3> <ul class="ul"> <li><a href="" class="nav">Donate</a></li> <li><a href="https://sdgs.un.org/goals" class="nav">Visit SDG.UN</a></li> </ul> <a href="#" class="toggle" id="menuicon"><i class="fas fa-bars"></i></a> </nav>

Aquí está mi JS:

 const toggle = document.getElementByClassName('menuicon')[0] const navBar = document.getElementByClassName('ul')[0] menuicon.addEventListener('click', () =>{ navBar.classList.toggle('active') })

No expande el menú cuando hago clic en el ícono de la hamburguesa.

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

0

getElementByClassName debe ser getElementsByClassName :

 const toggle = document.getElementsByClassName('menuicon')[0] const navBar = document.getElementsByClassName('ul')[0] menuicon.addEventListener('click', () =>{ navBar.classList.toggle('active') })
 .ul{ display:none; } .active{ display:block; }
 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <nav> <h3>Life Below Water</h3> <ul class="ul"> <li><a href="" class="nav">Donate</a></li> <li><a href="https://sdgs.un.org/goals" class="nav">Visit SDG.UN</a></li> </ul> <a href="#" class="toggle" id="menuicon"><i class="fas fa-bars"></i></a> </nav>

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!