I greatly need your help on how to twist my js code not to use front end input value but only use Field Value from development area for calculation and deliver the usual way on #total
Twist this as an example for me
Twist this as an example for me
$("#field1,#field2").on("change", function(){
$("#total").val(parseInt($("#field1").val()) + parseInt($("#field2").val()));
});