Простейший спойлер на jQuery
В редакторе
Простейший спойлер на jQuery
Brain_Script
881
2019-07-12 13:08:37
<script type="text/javascript">
$(document).ready(function(){
$('.spoiler-body').hide();
$('.spoiler-title').click(function(){
$(this).toggleClass('opened').toggleClass('closed').next().slideToggle();
if($(this).hasClass('opened')) {
$(this).html('Скрыть');
}
else {
$(this).html('Показать все');
}
});
});
</script>
Войдите для добавления комментария.