Hi:
required: function(element){
return $("#someInput").val() == "";
},
In this particular case I want the message placed in an errorContainer outside the form, but not sure how to do this in only this case. The other errors I want next to the inputs they correspond to.
So, how do I use an errorContainer outside the form for certain errors, and then use errors next to the (default behavior) input for others?
I don't want to use validate({
errorContainer: someDivOutsideForm
}
because that would move all the errors to that location, which I only want in some cases....
Thanks