Skip to content
Categories
All Power Tools and Fasteners Supply
- Choosing a selection results in a full page refresh.
- Opens in a new window.
const reviewsObserver = new IntersectionObserver((entries) => {
if (entries[0].isIntersecting) {
reviewsObserver.disconnect();
}
}, { rootMargin: '200px' });
const reviewsSection = document.querySelector('.jdgm-widget');
if (reviewsSection) reviewsObserver.observe(reviewsSection);