function toggleAccordionElement() {
...
}
jQuery(document).on('change', '.quantity-input', function () {
var form = jQuery(this).closest('form.js-recalculate');
if (typeof Virtuemart !== 'undefined' && typeof Virtuemart.setproducttype === 'function') {
var id = form.find('input[name="virtuemart_product_id[]"]').val();
Virtuemart.setproducttype(form, id);
}
});
jQuery(document).on('click', '.quantity-plus, .quantity-minus', function () {
var input = jQuery(this).siblings('.quantity-input');
setTimeout(function () {
input.trigger('change');
}, 100);
});