I’ve a form in HTML with several inputs and some of them are “select”…
All the inputs are mandatory and therefore I need to check if alll have a value…
For that purpose all the “select” element have an “n.d.” option with value=0 selected by default…
And the “save” button is “disabled”..
I would like to use JQuery to check if all the “select” have an option “selected” with a value different from 0, and if so, “enable” the “save” button…
Working sample