Hi, does the validation plugin support required hidden inputs?
I have two input fields: field1 (text) and field2 (hidden). When i change the text od field1 a js-function is called and the value of the hidden field2 is changed (or not if the text in field1 is the wrong one). In jquery.validate i have set a rule for field2 (required). When i validate the form and field2 is empty it shows me an error message - that's good! When i change the field1 text (right one now), the field2- value is set but the error message doesn't disappear (because the field2 is hidden and fires no onchange-event). How can i solve this problem? cu rigo