Created
December 1, 2021 08:23
-
-
Save ckschmieder/e0c090881a0aeebdb2672fc17a4ea6f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.slick-slider').on('beforeChange', function(event, slick, currentSlide, nextSlide){ | |
$( '#click-to-scroll').removeClass( "d-none" ); | |
if ( $('.slick-slide.slick-current.slick-active .hero-carousel__item').attr('data-scroll-to') == '' ) { | |
console.log("no data set"); | |
$( '#click-to-scroll').addClass( "d-none" ); | |
} else { | |
console.log("data was found"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment