JSFiddle - React, Tailwind, and code Playground

by jitendravyas

JavaScript

jQuery(document).ready(function() {
  jQuery(".accordion-content").hide();

  jQuery(".accordion-header").click(function()
  {
    jQuery(this).next(".accordion-content").slideToggle(500);
  });
});