Open accordion on page load / But leave it close on mobile view












4















I'm trying to have this accordion open in desktop view (on page load), but close in mobile view. Also I want this accordion to react to event on click, which it already does well.



So I'm having trouble having it open by default on desktop view while not in mobile view. Is it possible to make this work only by improving the js file I have here or also changing the css ?



Any help welcome for this task, I'm ok with css but little knowledge in js.






var acc = document.getElementsByClassName("accordion");
var i;

for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}

.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}

.active, .accordion:hover {
background-color: #ccc;
}

.accordion:after {
content: '02B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}

.active:after {
content: "2212";
}

.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

<button class="accordion">Section 1</button>
<div class="panel">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>

<button class="accordion">Section 2</button>
<div class="panel">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>












share|improve this question



























    4















    I'm trying to have this accordion open in desktop view (on page load), but close in mobile view. Also I want this accordion to react to event on click, which it already does well.



    So I'm having trouble having it open by default on desktop view while not in mobile view. Is it possible to make this work only by improving the js file I have here or also changing the css ?



    Any help welcome for this task, I'm ok with css but little knowledge in js.






    var acc = document.getElementsByClassName("accordion");
    var i;

    for (i = 0; i < acc.length; i++) {
    acc[i].addEventListener("click", function() {
    this.classList.toggle("active");
    var panel = this.nextElementSibling;
    if (panel.style.maxHeight){
    panel.style.maxHeight = null;
    } else {
    panel.style.maxHeight = panel.scrollHeight + "px";
    }
    });
    }

    .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    }

    .active, .accordion:hover {
    background-color: #ccc;
    }

    .accordion:after {
    content: '02B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    }

    .active:after {
    content: "2212";
    }

    .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    }

    <button class="accordion">Section 1</button>
    <div class="panel">
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
    </div>

    <button class="accordion">Section 2</button>
    <div class="panel">
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
    </div>












    share|improve this question

























      4












      4








      4


      2






      I'm trying to have this accordion open in desktop view (on page load), but close in mobile view. Also I want this accordion to react to event on click, which it already does well.



      So I'm having trouble having it open by default on desktop view while not in mobile view. Is it possible to make this work only by improving the js file I have here or also changing the css ?



      Any help welcome for this task, I'm ok with css but little knowledge in js.






      var acc = document.getElementsByClassName("accordion");
      var i;

      for (i = 0; i < acc.length; i++) {
      acc[i].addEventListener("click", function() {
      this.classList.toggle("active");
      var panel = this.nextElementSibling;
      if (panel.style.maxHeight){
      panel.style.maxHeight = null;
      } else {
      panel.style.maxHeight = panel.scrollHeight + "px";
      }
      });
      }

      .accordion {
      background-color: #eee;
      color: #444;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
      transition: 0.4s;
      }

      .active, .accordion:hover {
      background-color: #ccc;
      }

      .accordion:after {
      content: '02B';
      color: #777;
      font-weight: bold;
      float: right;
      margin-left: 5px;
      }

      .active:after {
      content: "2212";
      }

      .panel {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      }

      <button class="accordion">Section 1</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>

      <button class="accordion">Section 2</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>












      share|improve this question














      I'm trying to have this accordion open in desktop view (on page load), but close in mobile view. Also I want this accordion to react to event on click, which it already does well.



      So I'm having trouble having it open by default on desktop view while not in mobile view. Is it possible to make this work only by improving the js file I have here or also changing the css ?



      Any help welcome for this task, I'm ok with css but little knowledge in js.






      var acc = document.getElementsByClassName("accordion");
      var i;

      for (i = 0; i < acc.length; i++) {
      acc[i].addEventListener("click", function() {
      this.classList.toggle("active");
      var panel = this.nextElementSibling;
      if (panel.style.maxHeight){
      panel.style.maxHeight = null;
      } else {
      panel.style.maxHeight = panel.scrollHeight + "px";
      }
      });
      }

      .accordion {
      background-color: #eee;
      color: #444;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
      transition: 0.4s;
      }

      .active, .accordion:hover {
      background-color: #ccc;
      }

      .accordion:after {
      content: '02B';
      color: #777;
      font-weight: bold;
      float: right;
      margin-left: 5px;
      }

      .active:after {
      content: "2212";
      }

      .panel {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      }

      <button class="accordion">Section 1</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>

      <button class="accordion">Section 2</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>








      var acc = document.getElementsByClassName("accordion");
      var i;

      for (i = 0; i < acc.length; i++) {
      acc[i].addEventListener("click", function() {
      this.classList.toggle("active");
      var panel = this.nextElementSibling;
      if (panel.style.maxHeight){
      panel.style.maxHeight = null;
      } else {
      panel.style.maxHeight = panel.scrollHeight + "px";
      }
      });
      }

      .accordion {
      background-color: #eee;
      color: #444;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
      transition: 0.4s;
      }

      .active, .accordion:hover {
      background-color: #ccc;
      }

      .accordion:after {
      content: '02B';
      color: #777;
      font-weight: bold;
      float: right;
      margin-left: 5px;
      }

      .active:after {
      content: "2212";
      }

      .panel {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      }

      <button class="accordion">Section 1</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>

      <button class="accordion">Section 2</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>





      var acc = document.getElementsByClassName("accordion");
      var i;

      for (i = 0; i < acc.length; i++) {
      acc[i].addEventListener("click", function() {
      this.classList.toggle("active");
      var panel = this.nextElementSibling;
      if (panel.style.maxHeight){
      panel.style.maxHeight = null;
      } else {
      panel.style.maxHeight = panel.scrollHeight + "px";
      }
      });
      }

      .accordion {
      background-color: #eee;
      color: #444;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 15px;
      transition: 0.4s;
      }

      .active, .accordion:hover {
      background-color: #ccc;
      }

      .accordion:after {
      content: '02B';
      color: #777;
      font-weight: bold;
      float: right;
      margin-left: 5px;
      }

      .active:after {
      content: "2212";
      }

      .panel {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      }

      <button class="accordion">Section 1</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>

      <button class="accordion">Section 2</button>
      <div class="panel">
      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
      </div>






      javascript css accordion






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 17 '18 at 13:46









      MaxMax

      286




      286
























          3 Answers
          3






          active

          oldest

          votes


















          1














          You can consider a media query to set the max-height for big devices in order to have the accordion opne then adjust your JS code like below:






          var acc = document.getElementsByClassName("accordion");
          var i;

          for (i = 0; i < acc.length; i++) {
          acc[i].addEventListener("click", function() {
          this.classList.toggle("active");
          var panel = this.nextElementSibling;
          if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
          panel.style.maxHeight = "0px";
          } else {
          panel.style.maxHeight = panel.scrollHeight + "px";
          }
          });
          }

          .accordion {
          background-color: #eee;
          color: #444;
          cursor: pointer;
          padding: 18px;
          width: 100%;
          border: none;
          text-align: left;
          outline: none;
          font-size: 15px;
          transition: 0.4s;
          }

          .active, .accordion:hover {
          background-color: #ccc;
          }

          .accordion:after {
          content: '02B';
          color: #777;
          font-weight: bold;
          float: right;
          margin-left: 5px;
          }

          .active:after {
          content: "2212";
          }

          .panel {
          padding: 0 18px;
          background-color: white;
          max-height: 0px;
          overflow: hidden;
          transition: max-height 0.2s ease-out;
          }

          @media (min-width:600px) {
          .panel {
          max-height:500px;
          }
          .accordion:after {
          content: '2212';
          }
          .active:after {
          content: "02B";
          }

          }

          <button class="accordion">Section 1</button>
          <div class="panel">
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
          </div>

          <button class="accordion">Section 2</button>
          <div class="panel">
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
          </div>








          share|improve this answer
























          • Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

            – Max
            Nov 17 '18 at 14:20



















          1














          This solution using Javascript.

          If(window.innerWidth <= 768){
          this.classList.add("active");
          }

          and this if you want to use JQuery

          // Returns width of browser viewport
          if($( window ).width() > 768){
          //If you want to add dynamically a class or remove one
          $('.selector').addClass(); // or removeClass()
          }

          I hope this could help you





          share|improve this answer































            0














            If you want to do it through JS, you can make use of Window.matchMedia :)






            window.onload = ()=>{
            var acc = document.getElementsByClassName("accordion");
            var i;

            for (i = 0; i < acc.length; i++) {
            acc[i].addEventListener("click", function() {
            this.classList.toggle("active");
            var panel = this.nextElementSibling;
            if (panel.style.maxHeight){
            panel.style.maxHeight = null;
            } else {
            panel.style.maxHeight = panel.scrollHeight + "px";
            }
            });
            }

            // our media query string
            let mql = window.matchMedia("screen and (min-width: 1281px)");
            mediaQueryResponse(mql); // call the event handler at run time
            // listen for state changes
            mql.addListener(mediaQueryResponse);
            function mediaQueryResponse(mql){
            for(let i = 0; i < acc.length; i++){
            let pan = acc[i].nextElementSibling;
            if(mql.matches){
            acc[i].classList.toggle('active');
            pan.style.maxHeight = pan.scrollHeight + "px";
            }
            else {
            pan.style.maxHeight = null;
            }
            }
            }
            }

            .accordion {
            background-color: #eee;
            color: #444;
            cursor: pointer;
            padding: 18px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 15px;
            transition: 0.4s;
            }

            .active, .accordion:hover {
            background-color: #ccc;
            }

            .accordion:after {
            content: '02B';
            color: #777;
            font-weight: bold;
            float: right;
            margin-left: 5px;
            }

            .active:after {
            content: "2212";
            }

            .panel {
            padding: 0 18px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            }

            <button class="accordion">Section 1</button>
            <div class="panel">
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
            </div>

            <button class="accordion">Section 2</button>
            <div class="panel">
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
            </div>





            Also, here's a working example :)






            share|improve this answer

























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53351816%2fopen-accordion-on-page-load-but-leave-it-close-on-mobile-view%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














              You can consider a media query to set the max-height for big devices in order to have the accordion opne then adjust your JS code like below:






              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>








              share|improve this answer
























              • Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

                – Max
                Nov 17 '18 at 14:20
















              1














              You can consider a media query to set the max-height for big devices in order to have the accordion opne then adjust your JS code like below:






              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>








              share|improve this answer
























              • Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

                – Max
                Nov 17 '18 at 14:20














              1












              1








              1







              You can consider a media query to set the max-height for big devices in order to have the accordion opne then adjust your JS code like below:






              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>








              share|improve this answer













              You can consider a media query to set the max-height for big devices in order to have the accordion opne then adjust your JS code like below:






              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>








              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>





              var acc = document.getElementsByClassName("accordion");
              var i;

              for (i = 0; i < acc.length; i++) {
              acc[i].addEventListener("click", function() {
              this.classList.toggle("active");
              var panel = this.nextElementSibling;
              if (window.getComputedStyle(panel,null).getPropertyValue("max-height") !== "0px"){
              panel.style.maxHeight = "0px";
              } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
              }
              });
              }

              .accordion {
              background-color: #eee;
              color: #444;
              cursor: pointer;
              padding: 18px;
              width: 100%;
              border: none;
              text-align: left;
              outline: none;
              font-size: 15px;
              transition: 0.4s;
              }

              .active, .accordion:hover {
              background-color: #ccc;
              }

              .accordion:after {
              content: '02B';
              color: #777;
              font-weight: bold;
              float: right;
              margin-left: 5px;
              }

              .active:after {
              content: "2212";
              }

              .panel {
              padding: 0 18px;
              background-color: white;
              max-height: 0px;
              overflow: hidden;
              transition: max-height 0.2s ease-out;
              }

              @media (min-width:600px) {
              .panel {
              max-height:500px;
              }
              .accordion:after {
              content: '2212';
              }
              .active:after {
              content: "02B";
              }

              }

              <button class="accordion">Section 1</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>

              <button class="accordion">Section 2</button>
              <div class="panel">
              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
              </div>






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 17 '18 at 14:09









              Temani AfifTemani Afif

              70.8k93877




              70.8k93877













              • Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

                – Max
                Nov 17 '18 at 14:20



















              • Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

                – Max
                Nov 17 '18 at 14:20

















              Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

              – Max
              Nov 17 '18 at 14:20





              Thank you, this is exactly what I was looking for! If anyone knows where we can find resources to better understand js logic, please leave a link :)

              – Max
              Nov 17 '18 at 14:20













              1














              This solution using Javascript.

              If(window.innerWidth <= 768){
              this.classList.add("active");
              }

              and this if you want to use JQuery

              // Returns width of browser viewport
              if($( window ).width() > 768){
              //If you want to add dynamically a class or remove one
              $('.selector').addClass(); // or removeClass()
              }

              I hope this could help you





              share|improve this answer




























                1














                This solution using Javascript.

                If(window.innerWidth <= 768){
                this.classList.add("active");
                }

                and this if you want to use JQuery

                // Returns width of browser viewport
                if($( window ).width() > 768){
                //If you want to add dynamically a class or remove one
                $('.selector').addClass(); // or removeClass()
                }

                I hope this could help you





                share|improve this answer


























                  1












                  1








                  1







                  This solution using Javascript.

                  If(window.innerWidth <= 768){
                  this.classList.add("active");
                  }

                  and this if you want to use JQuery

                  // Returns width of browser viewport
                  if($( window ).width() > 768){
                  //If you want to add dynamically a class or remove one
                  $('.selector').addClass(); // or removeClass()
                  }

                  I hope this could help you





                  share|improve this answer













                  This solution using Javascript.

                  If(window.innerWidth <= 768){
                  this.classList.add("active");
                  }

                  and this if you want to use JQuery

                  // Returns width of browser viewport
                  if($( window ).width() > 768){
                  //If you want to add dynamically a class or remove one
                  $('.selector').addClass(); // or removeClass()
                  }

                  I hope this could help you






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 17 '18 at 14:11









                  Omar ZikryOmar Zikry

                  52




                  52























                      0














                      If you want to do it through JS, you can make use of Window.matchMedia :)






                      window.onload = ()=>{
                      var acc = document.getElementsByClassName("accordion");
                      var i;

                      for (i = 0; i < acc.length; i++) {
                      acc[i].addEventListener("click", function() {
                      this.classList.toggle("active");
                      var panel = this.nextElementSibling;
                      if (panel.style.maxHeight){
                      panel.style.maxHeight = null;
                      } else {
                      panel.style.maxHeight = panel.scrollHeight + "px";
                      }
                      });
                      }

                      // our media query string
                      let mql = window.matchMedia("screen and (min-width: 1281px)");
                      mediaQueryResponse(mql); // call the event handler at run time
                      // listen for state changes
                      mql.addListener(mediaQueryResponse);
                      function mediaQueryResponse(mql){
                      for(let i = 0; i < acc.length; i++){
                      let pan = acc[i].nextElementSibling;
                      if(mql.matches){
                      acc[i].classList.toggle('active');
                      pan.style.maxHeight = pan.scrollHeight + "px";
                      }
                      else {
                      pan.style.maxHeight = null;
                      }
                      }
                      }
                      }

                      .accordion {
                      background-color: #eee;
                      color: #444;
                      cursor: pointer;
                      padding: 18px;
                      width: 100%;
                      border: none;
                      text-align: left;
                      outline: none;
                      font-size: 15px;
                      transition: 0.4s;
                      }

                      .active, .accordion:hover {
                      background-color: #ccc;
                      }

                      .accordion:after {
                      content: '02B';
                      color: #777;
                      font-weight: bold;
                      float: right;
                      margin-left: 5px;
                      }

                      .active:after {
                      content: "2212";
                      }

                      .panel {
                      padding: 0 18px;
                      background-color: white;
                      max-height: 0;
                      overflow: hidden;
                      transition: max-height 0.2s ease-out;
                      }

                      <button class="accordion">Section 1</button>
                      <div class="panel">
                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                      </div>

                      <button class="accordion">Section 2</button>
                      <div class="panel">
                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                      </div>





                      Also, here's a working example :)






                      share|improve this answer






























                        0














                        If you want to do it through JS, you can make use of Window.matchMedia :)






                        window.onload = ()=>{
                        var acc = document.getElementsByClassName("accordion");
                        var i;

                        for (i = 0; i < acc.length; i++) {
                        acc[i].addEventListener("click", function() {
                        this.classList.toggle("active");
                        var panel = this.nextElementSibling;
                        if (panel.style.maxHeight){
                        panel.style.maxHeight = null;
                        } else {
                        panel.style.maxHeight = panel.scrollHeight + "px";
                        }
                        });
                        }

                        // our media query string
                        let mql = window.matchMedia("screen and (min-width: 1281px)");
                        mediaQueryResponse(mql); // call the event handler at run time
                        // listen for state changes
                        mql.addListener(mediaQueryResponse);
                        function mediaQueryResponse(mql){
                        for(let i = 0; i < acc.length; i++){
                        let pan = acc[i].nextElementSibling;
                        if(mql.matches){
                        acc[i].classList.toggle('active');
                        pan.style.maxHeight = pan.scrollHeight + "px";
                        }
                        else {
                        pan.style.maxHeight = null;
                        }
                        }
                        }
                        }

                        .accordion {
                        background-color: #eee;
                        color: #444;
                        cursor: pointer;
                        padding: 18px;
                        width: 100%;
                        border: none;
                        text-align: left;
                        outline: none;
                        font-size: 15px;
                        transition: 0.4s;
                        }

                        .active, .accordion:hover {
                        background-color: #ccc;
                        }

                        .accordion:after {
                        content: '02B';
                        color: #777;
                        font-weight: bold;
                        float: right;
                        margin-left: 5px;
                        }

                        .active:after {
                        content: "2212";
                        }

                        .panel {
                        padding: 0 18px;
                        background-color: white;
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.2s ease-out;
                        }

                        <button class="accordion">Section 1</button>
                        <div class="panel">
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                        </div>

                        <button class="accordion">Section 2</button>
                        <div class="panel">
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                        </div>





                        Also, here's a working example :)






                        share|improve this answer




























                          0












                          0








                          0







                          If you want to do it through JS, you can make use of Window.matchMedia :)






                          window.onload = ()=>{
                          var acc = document.getElementsByClassName("accordion");
                          var i;

                          for (i = 0; i < acc.length; i++) {
                          acc[i].addEventListener("click", function() {
                          this.classList.toggle("active");
                          var panel = this.nextElementSibling;
                          if (panel.style.maxHeight){
                          panel.style.maxHeight = null;
                          } else {
                          panel.style.maxHeight = panel.scrollHeight + "px";
                          }
                          });
                          }

                          // our media query string
                          let mql = window.matchMedia("screen and (min-width: 1281px)");
                          mediaQueryResponse(mql); // call the event handler at run time
                          // listen for state changes
                          mql.addListener(mediaQueryResponse);
                          function mediaQueryResponse(mql){
                          for(let i = 0; i < acc.length; i++){
                          let pan = acc[i].nextElementSibling;
                          if(mql.matches){
                          acc[i].classList.toggle('active');
                          pan.style.maxHeight = pan.scrollHeight + "px";
                          }
                          else {
                          pan.style.maxHeight = null;
                          }
                          }
                          }
                          }

                          .accordion {
                          background-color: #eee;
                          color: #444;
                          cursor: pointer;
                          padding: 18px;
                          width: 100%;
                          border: none;
                          text-align: left;
                          outline: none;
                          font-size: 15px;
                          transition: 0.4s;
                          }

                          .active, .accordion:hover {
                          background-color: #ccc;
                          }

                          .accordion:after {
                          content: '02B';
                          color: #777;
                          font-weight: bold;
                          float: right;
                          margin-left: 5px;
                          }

                          .active:after {
                          content: "2212";
                          }

                          .panel {
                          padding: 0 18px;
                          background-color: white;
                          max-height: 0;
                          overflow: hidden;
                          transition: max-height 0.2s ease-out;
                          }

                          <button class="accordion">Section 1</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>

                          <button class="accordion">Section 2</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>





                          Also, here's a working example :)






                          share|improve this answer















                          If you want to do it through JS, you can make use of Window.matchMedia :)






                          window.onload = ()=>{
                          var acc = document.getElementsByClassName("accordion");
                          var i;

                          for (i = 0; i < acc.length; i++) {
                          acc[i].addEventListener("click", function() {
                          this.classList.toggle("active");
                          var panel = this.nextElementSibling;
                          if (panel.style.maxHeight){
                          panel.style.maxHeight = null;
                          } else {
                          panel.style.maxHeight = panel.scrollHeight + "px";
                          }
                          });
                          }

                          // our media query string
                          let mql = window.matchMedia("screen and (min-width: 1281px)");
                          mediaQueryResponse(mql); // call the event handler at run time
                          // listen for state changes
                          mql.addListener(mediaQueryResponse);
                          function mediaQueryResponse(mql){
                          for(let i = 0; i < acc.length; i++){
                          let pan = acc[i].nextElementSibling;
                          if(mql.matches){
                          acc[i].classList.toggle('active');
                          pan.style.maxHeight = pan.scrollHeight + "px";
                          }
                          else {
                          pan.style.maxHeight = null;
                          }
                          }
                          }
                          }

                          .accordion {
                          background-color: #eee;
                          color: #444;
                          cursor: pointer;
                          padding: 18px;
                          width: 100%;
                          border: none;
                          text-align: left;
                          outline: none;
                          font-size: 15px;
                          transition: 0.4s;
                          }

                          .active, .accordion:hover {
                          background-color: #ccc;
                          }

                          .accordion:after {
                          content: '02B';
                          color: #777;
                          font-weight: bold;
                          float: right;
                          margin-left: 5px;
                          }

                          .active:after {
                          content: "2212";
                          }

                          .panel {
                          padding: 0 18px;
                          background-color: white;
                          max-height: 0;
                          overflow: hidden;
                          transition: max-height 0.2s ease-out;
                          }

                          <button class="accordion">Section 1</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>

                          <button class="accordion">Section 2</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>





                          Also, here's a working example :)






                          window.onload = ()=>{
                          var acc = document.getElementsByClassName("accordion");
                          var i;

                          for (i = 0; i < acc.length; i++) {
                          acc[i].addEventListener("click", function() {
                          this.classList.toggle("active");
                          var panel = this.nextElementSibling;
                          if (panel.style.maxHeight){
                          panel.style.maxHeight = null;
                          } else {
                          panel.style.maxHeight = panel.scrollHeight + "px";
                          }
                          });
                          }

                          // our media query string
                          let mql = window.matchMedia("screen and (min-width: 1281px)");
                          mediaQueryResponse(mql); // call the event handler at run time
                          // listen for state changes
                          mql.addListener(mediaQueryResponse);
                          function mediaQueryResponse(mql){
                          for(let i = 0; i < acc.length; i++){
                          let pan = acc[i].nextElementSibling;
                          if(mql.matches){
                          acc[i].classList.toggle('active');
                          pan.style.maxHeight = pan.scrollHeight + "px";
                          }
                          else {
                          pan.style.maxHeight = null;
                          }
                          }
                          }
                          }

                          .accordion {
                          background-color: #eee;
                          color: #444;
                          cursor: pointer;
                          padding: 18px;
                          width: 100%;
                          border: none;
                          text-align: left;
                          outline: none;
                          font-size: 15px;
                          transition: 0.4s;
                          }

                          .active, .accordion:hover {
                          background-color: #ccc;
                          }

                          .accordion:after {
                          content: '02B';
                          color: #777;
                          font-weight: bold;
                          float: right;
                          margin-left: 5px;
                          }

                          .active:after {
                          content: "2212";
                          }

                          .panel {
                          padding: 0 18px;
                          background-color: white;
                          max-height: 0;
                          overflow: hidden;
                          transition: max-height 0.2s ease-out;
                          }

                          <button class="accordion">Section 1</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>

                          <button class="accordion">Section 2</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>





                          window.onload = ()=>{
                          var acc = document.getElementsByClassName("accordion");
                          var i;

                          for (i = 0; i < acc.length; i++) {
                          acc[i].addEventListener("click", function() {
                          this.classList.toggle("active");
                          var panel = this.nextElementSibling;
                          if (panel.style.maxHeight){
                          panel.style.maxHeight = null;
                          } else {
                          panel.style.maxHeight = panel.scrollHeight + "px";
                          }
                          });
                          }

                          // our media query string
                          let mql = window.matchMedia("screen and (min-width: 1281px)");
                          mediaQueryResponse(mql); // call the event handler at run time
                          // listen for state changes
                          mql.addListener(mediaQueryResponse);
                          function mediaQueryResponse(mql){
                          for(let i = 0; i < acc.length; i++){
                          let pan = acc[i].nextElementSibling;
                          if(mql.matches){
                          acc[i].classList.toggle('active');
                          pan.style.maxHeight = pan.scrollHeight + "px";
                          }
                          else {
                          pan.style.maxHeight = null;
                          }
                          }
                          }
                          }

                          .accordion {
                          background-color: #eee;
                          color: #444;
                          cursor: pointer;
                          padding: 18px;
                          width: 100%;
                          border: none;
                          text-align: left;
                          outline: none;
                          font-size: 15px;
                          transition: 0.4s;
                          }

                          .active, .accordion:hover {
                          background-color: #ccc;
                          }

                          .accordion:after {
                          content: '02B';
                          color: #777;
                          font-weight: bold;
                          float: right;
                          margin-left: 5px;
                          }

                          .active:after {
                          content: "2212";
                          }

                          .panel {
                          padding: 0 18px;
                          background-color: white;
                          max-height: 0;
                          overflow: hidden;
                          transition: max-height 0.2s ease-out;
                          }

                          <button class="accordion">Section 1</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>

                          <button class="accordion">Section 2</button>
                          <div class="panel">
                          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                          </div>






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 17 '18 at 14:37

























                          answered Nov 17 '18 at 14:31









                          C.RaysOfTheSunC.RaysOfTheSun

                          640127




                          640127






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53351816%2fopen-accordion-on-page-load-but-leave-it-close-on-mobile-view%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              這個網誌中的熱門文章

                              Tangent Lines Diagram Along Smooth Curve

                              Yusuf al-Mu'taman ibn Hud

                              Zucchini