Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have found this question but it was written in 2009, presumably since then they have decided to ignore hidden fields by default...anyone know how I can validate my hidden fields?

I have a custom invalidHandler to deal with the result and was seeing some strange behaviour, I now realise this is because some of my fields are hidden (using display:none). I have a tabbed form, hence some elements being hidden FYI.

Thanks in advance.

share|improve this question
a small hack would be to call the validation before the tab change, if there are errors don't let the user change the tab. – Poelinca Dorin Jan 4 '12 at 10:17
Did you try $("#myform").validate({ ignore: ":hidden" }); – Pavan Jan 4 '12 at 10:17

1 Answer

up vote 2 down vote accepted

Found the answer...

I started looking at the validator plugin code and came across this:

$.extend($.validator, {
defaults: {
messages: {},
groups: {},
rules: {},
errorClass: "error",
validClass: "valid",
errorElement: "label",
focusInvalid: true,
errorContainer: $( [] ),
errorLabelContainer: $( [] ),
onsubmit: true,
ignore: ":hidden", 
...

So I set the option 'ignore' to an empty string and it works. I guess the documentation should be updated because it doesn't state that there is a default for ignore.

Thanks anyway.

share|improve this answer
1  
Thanks for that! Saved me some time. – Dan Bater Feb 21 at 10:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.