Combination of Auto Comma and Auto Sum in jquery

123 Views Asked by At

i have this syntax where i want to combine the script of having a textbox autocomma and auto result whenever i input values. is there a better way to do this?

          $('.numeric_value').keyup(function() {
            var sum = 0;
            $('.numeric_value').each(function() {
                sum += Number($(this).val());
            });
            $('#total').val(sum);
        });
       
        $(document).ready(function(){
        $("input[data-type='number']").keyup(function(event){
          // skip for arrow keys
          if(event.which >= 37 && event.which <= 40){
              event.preventDefault();
          }
          var $this = $(this);
          var num = $this.val().replace(/,/gi, "");
          var num2 = num.split(/(?=(?:\d{3})+$)/).join(",");
          console.log(num2);
          // the following line has been simplified. Revision history contains original.
          $this.val(num2);
      });
    });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form class="form-inline">
      <div class="form-group">
       <input type="number" class="numeric_value" autofocus="autofocus">
      </div>
      <div class="form-group">
       <label>+</label>
       <input type="number" class="numeric_value">
      </div>
      <div class="form-group">
       <label>=</label>
       <input type="text" data-type="number" class="form-control" id="total" disabled>
      </div>
     </form>
      <!-- <input type="number" class="numeric_value" onkeyup="javascript:this.value=Comma(this.value);"> -->
       <input class="numeric_value" id="id_step2-number_2" name="step2-number_2" type="text" data-type="number">

0

There are 0 best solutions below