JQUERY Scroll to Element Togle Menu Menu

$('.scrollto').click(function() {
	$('.article-aside__li').removeClass('is-active');
    $('html, body').animate({
        scrollTop: eval($('#' + $(this).attr('target')).offset().top - 10)
    }, 1000);
	$(this).parent('li').toggleClass('is-active');
	console.log(this);
});
artharus