I need to show divs on product page based on selected variant.
I dont want to use variant.id == ‘variant name’ because its a lot of products with sometimes 3x3 options.
I’m not that good on JS so i cant make it work with contains operator.
var selectCallback = function(variant, selector) {
if (variant) {
if (variant.title contains 'banana') {
$('.banana').css('display', 'block');
} else {
$('.banana').css('display', 'none');
}
}