Forgive me if i open a new question of an old argument, but i can't find any valid solution. I have a form with some field that can become disabled but they must be validated (disabled becasue user is not allowed to fill).
Since the original Javascript Validator excludes submit/reset/image/disabled i decided to modify this file in order to make disabled fields validated.
the code passed from:
.not(":submit, :reset, :image, [disabled]")
to:
.not(":submit, :reset, :image")
but my disabled fields are still ignored. I tried every kind of variations on the theme but i continue to have the issue.
Thanks for any new tip!