Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. $(document).ready(function() {
  2. thumbnails = $('img[src*="/products/"]').not(':first');
  3. if (thumbnails.size()) {
  4. thumbnails.bind('click', function() {
  5. var image = $(this).attr('src').split('?')[0].replace(/(_160x\.)|(_thumb\.)|(_small\.)|(_compact\.)|(_medium\.)|(_large\.)|(_grande\.)/,'.');
  6. if (typeof variantImages[image] !== 'undefined') {
  7. productOptions.forEach(function (value, i) {
  8. optionValue = variantImages[image]['option-'+i];
  9. if (optionValue !== null && $('.single-option-selector:eq('+i+') option').filter(function() { return $(this).text() === optionValue }).length) {
  10. $('.single-option-selector:eq('+i+')').val(optionValue).trigger('change');
  11. }
  12. });
  13. }
  14. });
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement