Jump to content

Kare

Members
  • Posts

    2
  • Joined

  • Last visited

Kare's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Kare

    this Keyword

    var panel = this.nextElementSibling; What about "nextElementSibling"? I looked at its description and it gives the <ul> <li> example. But what's next sibling does it choose here in the above code and how does it work? Could you help please?
  2. Kare

    this Keyword

    I quoted this code from "How to" section's "Accordion" part. There are 2 "this" keywords here and i'm trying to understand what they are referring to and how they work. Could someone explain please? var acc = document.getElementsByClassName("accordion");var i;for (i = 0; i < acc.length; i++) { acc.addEventListener("click", function() { /* Toggle between adding and removing the "active" class, to highlight the button that controls the panel */ this.classList.toggle("active"); /* Toggle between hiding and showing the active panel */ var panel = this.nextElementSibling; if (panel.style.display === "block") { panel.style.display = "none"; } else { panel.style.display = "block"; } });}
×
×
  • Create New...