Sunday, September 22, 2024
Google search engine
HomeLanguagesJavascriptHow to create an FAQ section to any website using JavaScript ?

How to create an FAQ section to any website using JavaScript ?

In this article, we have created a Frequently Asked Questions(FAQ) accordion using JavaScript. The accordion is used to display the content in list format. It can expand or collapse to display the content it contains.

Approach:

  • Create a nested HTML div tag with class names containing the questions and answers.
  • For styling, add some CSS properties like alignment, font size, padding, margin, etc.
  • Using JavaScript, implement functions that display answer or accordion-item when the question is clicked.

HTML Code:  We have used classes for questions and answers. These classes are used for styling purposes.

CSS Code: For styling, we have used CSS properties.

JavaScript code: We will use JavaScript to display the accordion when it is clicked. We have used the querySelectorAll() method to return a collection of elements that match the class name passed to this method and store these elements in variable answers.

We have used a forEach() method to call the function over each element in the answer variable. Now, specify an event listener addEventListener(), when the element is clicked. It will check if the event has an active class by using the classList property which returns the names of all the classes associated with that element or event.

HTML




<!DOCTYPE html>
<html>
  
<head>
  <link rel="stylesheet" href="styles.css">
  <script src="main.js"></script>
</head>
  
<body>
  <h2 style="color:green; text-align:center">
    neveropen
  </h2>
  <div class="layout">
    <div class="accordion">
      <div class="accordion__question">
        <p>Where is Taj Mahal located?</p>
  
      </div>
      <div class="accordion__answer">
        <p>Taj Mahal is located in Agra, Uttar Pradesh.</p>
      </div>
    </div>
  
    <div class="accordion">
      <div class="accordion__question">
        <p>How many planets are there in solar system?</p>
      </div>
  
      <div class="accordion__answer">
        <p>
          There are eight planets in solar system.
          Mercury, Venus, Earth, Mars, Jupiter, Saturn,
          Uranus, and Neptune.
        </p>
      </div>
    </div>
  </div>
</body>
  
</html>


CSS




body {
  background-color: rgb(153, 218, 196);
}
.layout {
  width: 600px;
  margin: auto;
}
.accordion {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: rgb(105, 206, 105);
  border-radius: 10px;
}
.accordion__question p {
  margin: 5px;
  padding: 0;
  font-family: Verdana;
  font-size: 20px;
}
.accordion__answer p {
  margin: 5px;
  padding: 10px;
  font-size: large;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(255, 255, 255);
  background: rgb(82, 170, 122);
  border-radius: 10px;
}
.accordion:hover {
  cursor: pointer;
}
.accordion__answer {
  display: none;
}
.accordion.active .accordion__answer {
  display: block;
}


Javascript




let answers = document.querySelectorAll(".accordion");
answers.forEach((event) => {
  event.addEventListener("click", () => {
    if (event.classList.contains("active")) {
      event.classList.remove("active");
    } else {
      event.classList.add("active");
    }
  });
});


Output: Click here to see live code output

FAQ feature

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments