Skip to content

Instantly share code, notes, and snippets.

  • Save ramzs/77a2b3c210547172f0beacf519f5119e to your computer and use it in GitHub Desktop.
Save ramzs/77a2b3c210547172f0beacf519f5119e to your computer and use it in GitHub Desktop.
Изменить класс display: block на другой для fadeToggle или slideToggle. Замена текста туда сюда
$('.product-shops__linkall').bind('click', function () {
var th = $(this);
var item = th.closest('.product-shops').find('.product-shops__item:nth-child(n+3)');
th.toggleClass('active').text(th.is('.active') ? 'Свернуть' : 'Еще магазины');
item.stop().fadeToggle({
start: function () {
$(this).css('display', 'flex');
}
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment