Skip to content

Instantly share code, notes, and snippets.

@ckschmieder
Created December 1, 2021 08:23
Show Gist options
  • Save ckschmieder/e0c090881a0aeebdb2672fc17a4ea6f9 to your computer and use it in GitHub Desktop.
Save ckschmieder/e0c090881a0aeebdb2672fc17a4ea6f9 to your computer and use it in GitHub Desktop.
$('.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