I'm trying to create a FAQ page where a question turns to red when clicked and it's answer slides down, while all the other answers slide up. So at any one time only one answer is open, and only if open it's question will be highlighted red.
This is probably quite simple to achieve but I don't have much experience with javascript... So far everything is working fine if I click on different questions, but clicking on the same question while it is open will close it and then re-open it:
window.toggle_info = $ ->
$('.toggle-button').click ->
$('.toggle-button').removeClass("red-reply") unless $(this).hasClass('red')
$('.toggle-info').slideUp("slow")
$(this).next('.toggle-info').slideToggle("slow")
$(this).toggleClass("red")
I've tried using .not('red') .not('.red') :not('red') in various ways on the $('.toggle-info').slideUp("slow") line but it's not working.
The color toggle is working fine in all cases.
Thanks for your time :)