1
I am developing a system and in a certain part it presents the following structure, image below
Also follows the code
What I want to do is when the user type in the "Arms" field and in the "Weight" field he performs an account and returns the value in the "Total Prod" field."
Put this in each line, staying as image below:
I tried to do it that way, code below:
$(document).ready(function(){
$(document).on('change', '.peso', function() {
var v = $(this).val();
var c = $(".bracas").val();
$(".total_prod").val(v*c);
});
});
However, Dassa forms all fields "Total Prod." is filled in.
Could you give me a hand with that?
Preferably put the code written, not by image.
– UzumakiArtanis
Okay, I’ll look into it next time. Thank you!
– Weslley