templates/SCRIPTS/Operacion/control_coste_importacion.html.twig line 1

Open in your IDE?
  1. <!-- START SCRIPTS/Operacion/control_coste_importacion.html.twig -->
  2. <script type="text/javascript">
  3.     $(function()
  4.     {
  5.         $("input.control-coste-importacion").on("change", function() {
  6.             const an = AutoNumeric.getAutoNumericElement(this);
  7.             if (an.getNumber() === 0) {
  8.                 $(this).removeClass("control-coste-importacion-alert").addClass("control-coste-importacion-alert");
  9.             }
  10.             else
  11.             {
  12.                 $(this).removeClass("control-coste-importacion-alert");
  13.             }
  14.         });
  15.     });
  16. </script>
  17. <!-- END SCRIPTS/Operacion/control_regimen.html.twig -->