Search code examples
javascripthtmljquerycalculated-fieldjquery-calculation

JQUERY why this field doesn´t change?


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


Solution

  • After set the Values you can trigger change event.

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

    this might help you.