[jQuery] Custom error function in jQuery Validation plugin?

[jQuery] Custom error function in jQuery Validation plugin?


I am new to jQuery validation plugin (http://docs.jquery.com/Plugins/
Validation). What I am trying to do is to have my own error message
DIV with display:none initially. If there is error, I want to run the
fadein/fadeout to show that error.
The structure of the input/error DIV like this:
<div><input></input></div>
<div>context help</div>
<div>error msg</div>
The way this plugin works is to insert a LABEL right next to the INPUT
and this is not what I want. I want to reuse the html code I have in
the error msg DIV. I tried to look in errorPlacement but not sure how
to use it. Can someone help?
Thanks