Help please, everything is ok, you need to change any element of the form, the "Save" button is available (able), otherwise the button is not accessible (disabled). I thought to do it on JS, the onChange event did not work out.

    1 answer 1

    try this:

    $(document).ready(function() { $("#formId").change(function(){ $("#submitForm").removeAttr("disabled"); }); });