This file contains 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
$(document).ready(function(e){ | |
var $variants = $('.variant-custom-fields'); | |
var $form = $('form[action="/cart/add"]'); | |
// Set the active variant on page load. | |
setActiveVariantCustomFields($form, $variants); | |
// Toggle display when dropdown changed in the "Add to Cart" feature. | |
$form.find('select').on('change', function(e){ | |
setActiveVariantCustomFields($form, $variants); | |
}); | |
/** | |
* Sets the active variant based on the "id" select dropdown in the add to cart form. | |
*/ | |
function setActiveVariantCustomFields($form, $variants){ | |
$variants.hide(); | |
setTimeout(function(){ | |
var active_variant_id = $form.find('select[name="id"]').val(); | |
$variants.filter('[data-variant-id="'+ active_variant_id +'"]').show(); | |
}, 100); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment