Toyota GR Corolla Graphic T-Shirt

Price range: $27.99 through $32.99

-

X
Welcome to our website
jQuery(function ($) { function addProductButton() { // Remove any existing button $('#fg-view-product').remove(); // Current lightbox thumbnail var selected = $('.fg-panel-thumb.fg-selected'); if (!selected.length) { return; } // Find the selected image URL var selectedImage = selected.find('img').attr('src'); if (!selectedImage) { return; } // Find the matching gallery thumbnail by image filename var galleryThumb = $('.fg-thumb').filter(function () { var img = $(this).find('img').attr('src'); return img === selectedImage; }).first(); if (!galleryThumb.length) { return; } var productURL = galleryThumb.data('product-url'); if (!productURL) { return; } // Build button var button = $( '

' + 'View Product' + '

' ); button.find('a').attr('href', productURL); // Insert below the description $('.fg-media-caption-description').after(button); } // Watch the lightbox for changes const observer = new MutationObserver(function () { addProductButton(); }); observer.observe(document.body, { childList: true, subtree: true, attributes: true }); });