app/Plugin/QuantityDiscountDx/Resource/template/default/Product/detail_ex_js.twig line 1

Open in your IDE?
  1. <script>
  2.     $(function () {
  3.         $('#classcategory_id1').change(function() {
  4.             $('[class^="qd-product_class_id_"]').css('font-weight', "");
  5.             let ProductClassVal = $('#ProductClass').val();
  6.             if(ProductClassVal != "") {
  7.                 $('.qd-product_class_id_' + ProductClassVal).css('font-weight', "bold");
  8.             }
  9.         });
  10.         $('#classcategory_id2').change(function() {
  11.             $('[class^="qd-product_class_id_"]').css('font-weight', "");
  12.             let ProductClassVal = $('#ProductClass').val();
  13.             if(ProductClassVal != "") {
  14.                 $('.qd-product_class_id_' + ProductClassVal).css('font-weight', "bold");
  15.             }
  16.         });
  17.     })
  18. </script>