Created
May 23, 2024 10:56
-
-
Save mclarenmervin/dd24f861112ad98170bf4472a6cb6b74 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
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