Дело в том я не еще не бум бум в JS
Вот пытался сделать поднятие вверх, но не работает...
$('.filter_1').scroll(function () {
if (this.scrollHeight - this.scrollTop === this.clientHeight) {
$('.filter_other1 span').removeClass('glyphicon-triangle-bottom');
$('.filter_other1 span').addClass('glyphicon-triangle-top');
$('.filter_other1').removeClass('bottom');
$('.filter_other1').addClass('up');
} else {
$('.filter_other1 span').removeClass('glyphicon-triangle-top');
$('.filter_other1 span').addClass('glyphicon-triangle-bottom');
$('.filter_other1').removeClass('up');
$('.filter_other1').addClass('bottom');
}
});
if ( $(".filter_other1").hasClass("bottom") ) {
$('.filter_other1').click(function () {
$('.filter_1').animate({
scrollTop: '+=53'
}, 1000);
});
} else if ( $(".filter_other1").hasClass("up") ) {
$('.filter_other1').click(function () {
$('.filter_1').animate({
scrollTop: '-53'
}, 1000);
});
}