jQuery(function($){
$('.rmindev-swatches .swatch-item').on('click', function(){
var $this = $(this);
var value = $this.data('value');
var attribute = $this.closest('.rmindev-swatches').data('attribute_name');
// UI state
$this.addClass('active').siblings().removeClass('active');
// Sync with WooCommerce form
var $form = $('form.variations_form');
$form.find('select[name="'+attribute+'"]').val(value).trigger('change');
});
});