I’ve got an input field on my plain html form that I would like to be marked as invalid (and the error message shown) from the moment the page loads.
Is this possible to do with the jquery validate plugin?
Failing that, how can I hide an element when the plugin tries to validate a particular input field?
Managed to come up with a solution. It involved adding a ‘dummy’ validation element that is shown when the page is loaded. As soon as the user inputs a value into the corresponding field, the dummy element is hidden and the real one is shown.
I used the highlight and unhighlight options for the validate method to achieve what i wanted.
Maybe this will help someone else out in future.