I'm building a list of FAQs that I want to toggle to expand the answer. I have it started. I don't know JQuery very well, so I'm trying to find a tutorial online. I've found one, but now I want to add an arrow to the side of the header that will turn down when the section is toggled.
Here's the script:
Here's the CSS:
.demo-show {
width: 350px;
margin: 1em .5em;
}
.demo-show h3 {
margin: 0;
padding: .25em;
background: #bfcd93;
border-top: 1px solid #386785;
border-bottom: 1px solid #386785;
}
.demo-show div {
padding: .5em .25em;
}
And here's the page I'm putting it on: http://www.ekcetera.com/faq/faq.php
I just want to add a little arrow that will toggle down and up when "Title" is clicked.
Can anyone help?