Ваше замовлення:
jQuery(function($) { var originalHtml = null;$(document).on('found_variation', '.variations_form', function(event, variation) { var $topPrice = $('.onovo-price-top .price'); if (originalHtml === null) { originalHtml = $topPrice.html(); } if (variation && variation.price_html) { $topPrice.html(variation.price_html); } });$(document).on('reset_data', '.variations_form', function() { var $topPrice = $('.onovo-price-top .price'); if (originalHtml !== null) { $topPrice.html(originalHtml); } }); });