私のサイトには、以下を読む/もっと読むトグル スイッチがあります。それはうまく機能しますが、開いているとき(テキストが非表示になっていない)、「もっと読む」というリンクテキストに「もっと読む」というリンクテキストが必要です。私はjQueryが初めてで、簡単な解決策を探しています。
これが私のコードです:
<div class="survey_text">
Always visable text
</div>
<h3 class="read-more-toggle">Read More</h3>
<div class="read-more-content">
<div class="survey_text">
Hidden text that is toggled open
</div>
</div>
<script>
// Hide the extra content initially, using JS so that if JS is disabled, no problemo.
$('.read-more-content').addClass('hide');
// Set up the toggle.
$('.read-more-toggle').on('click', function() {
$(this).next('.read-more-content').toggleClass('hide');
});
</script>