Advertisement
robinellen

Accordion Drop Down

Mar 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1.  Code injection:
  2.  
  3. <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  4.  
  5.  Page specific code injection:
  6.  
  7. <script>
  8. $(document).ready(function(){
  9. $('.markdown-block .sqs-block-content h2').css('cursor','pointer');
  10. $(".markdown-block .sqs-block-content h2").nextUntil("h2").slideToggle();
  11. $(".markdown-block .sqs-block-content h2").click(function() {$(this).nextUntil("h2").slideToggle();});
  12. });
  13. </script>
  14.  
  15. Insert markdown:
  16.  
  17. ## **+ QUESTION 1**
  18.  
  19. REPLY 1
  20.  
  21. ## **+ QUESTION 2**
  22.  
  23. REPLY 2
  24.  
  25. ## **+ QUESTION 3**
  26.  
  27. REPLY 3
  28.  
  29.  Custom styling in CSS:
  30.  
  31.   .sqs-block-markdown h2 {
  32.   border: solid 1px #000;
  33.   padding: 12px 14px;
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement