-2

i reused the code from every calculation in there but nothing. seems like the field that is listening never change.

</div>

thnks for ur time

  • The `change` event only happens when the user changes the input, not when it's updated from JavaScript. – Barmar Dec 29 '20 at 06:30

1 Answers1

0

After set the Values you can trigger change event.

$("element").val("newValue").trigger('change');

this might help you.

Kd Nimavat
  • 282
  • 1
  • 11