I have this snippet of my code that does a scrool for the class "tabs"
$('html, body').animate({scrollTop: $(".abas").offset().top}, 300);
Would it be possible to call the .abas_mobile class on the desktop and mobile .abas_mobile
I'm doing it like this, but it's not working out
$('html, body').animate({scrollTop: $(".abas").offset().top}, 300);
$(window).resize(function(){
if ($(window).width() <= 800){
$('html, body').animate({scrollTop: $(".abas_mobile").offset().top}, 300);
}
});