Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mclarenmervin/dd24f861112ad98170bf4472a6cb6b74 to your computer and use it in GitHub Desktop.
Save mclarenmervin/dd24f861112ad98170bf4472a6cb6b74 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($){
$(window).on('scroll', function(){
var scrollTop = $(this).scrollTop();
var targetTop = $('.woocommerce-product-gallery').offset().top;
if (scrollTop >= targetTop) {
$('.woocommerce-product-gallery').addClass('highlight');
} else {
$('.woocommerce-product-gallery').removeClass('highlight');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment