I have a list of question/answers div
s: When I open an answer by clicking a question, all other answers close.
<div class="question">
QUESTION 1
</div>
<div class="answer">
ANSWER 1
</div>
<div class="question">
QUESTION 2
</div>
<div class="answer">
ANSWER 2
</div>
(etc.)
For that, I use a javascript code found on Stackoverflow, which works great:
$(document).ready(function() {
var $answers = $('.answer');
$(".question").click(function() {
var $ans = $(this).next(".answer").stop(true).slideToggle(500);
$answers.not($ans).filter(':visible').stop(true).slideUp();
})
});
My problem: If one of the opened answers (let'say the answer 2) is really long, with a very big height, when I click on the next question (the question 3), all the div
s will go up (following the SlideUp of answer 2), and the screen won't follow them. And the answer I want (the answer 3) will not be visible, I have to scroll up to see it.
Here is an exemple (question 2 is the long answer) : https://jsfiddle.net/TB54/1dgchwyw/1/
Is there any way to make the screen to slideUp with the answer which just has been closed? Or at least to make the screen to scroll to the clicked question?
Your code can work fine if you set a
min
andmax-height
, and just set theoverflow
to auto. Scrolling through a long answer can be a pain at the best of times, so if an answer is very long, probably better to let it scroll within the div, then it doesn't immediately appear so long (and maybe daunting!)Check out the fiddle https://jsfiddle.net/769ohszw/
(I set the min-height to 20vh, max to 30vh and overflow to auto)