How to add an FAQ to your Squarespace site.

 As you watch the tutorial, I will reference the following coding and where to place them on your site.


Step 1

Settings > Advanced > Code Injection

## ** FAQ Show/Hide **

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>


Step 2

FAQ Page > Settings > Advanced

<script>

$(document).ready(function(){

$('.markdown-block .sqs-block-content h3').css('cursor','pointer');

$(".markdown-block .sqs-block-content h3").nextUntil("h3").slideToggle();

$(".markdown-block .sqs-block-content h3").click(function() {$(this).nextUntil("h2").slideToggle();});

});

</script>


Step 3

FAQ Page > Markdown Block

### **+ Question Text?**

Answer Text.