In 2011, jQuery Validate - Enable validation for hidden fields recommended solution to validate hidden fields using validation plugin http://jqueryvalidation.org/ version 1.9 was to set the ignore
property to an empty array.
Using version 1.13.1, is this still the preferred way to do so?
If I only wish to validate one specific hidden input, and use the default for all other inputs, is there another way to do so? I tried adding a custom validation method, however, the hidden attribute of the input prevented it from being triggered. Maybe instead of setting the ignore
attribute to an empty array, could it be set to something that ignores all hidden inputs except for the one I wish validated?