So I'm using jQuery and the validation plugin to validate form input on the client side. Of course I need to revalidate it on the server. I want to statically put the errors tags into the HTML for all form items. So even if there's no error they'll still be there. I want to do this so that the jQuery validation and PHP can both output to the same tags.
Now my question is this - How can I force the validation plugin to output to the existing tag? Is it possible and if not, how could I accomplish what I want? Surely this is a pretty common thing to want to do, and yet I haven't been able to find any answers (maybe I just don't know what to search for).
Here's a little example of what I'm after.
<li>
<label for="description" class='form_desc'>Description</label>
<textarea name="description" id='description' class='required' title="A description of your listing." rows="15" ></textarea>
<label for='description' class='error'>This is the tag I want to use.</label>
</li>