Yes this can be done by just using some css for the error, input and image.
The error message that is inserted after the input field looks like this.
<label for="cname" generated="true" class="error">This field is
required.</label>
so you should be able to style it using some css such as
label .error{
// add styling here to put the error message where you want it.
}
Hope this helps somewhat...
factoringcompare.com wrote:
>
> Hi,
>
> I’m using the Validation plug-in with Form Wizard (http://
> home.aland.net/sundman/).
>
> I want to change the position of the error message from directly
> following the element. To explain; following each input I have a tool
> tip image. I would like the error message to either appear directly
> below the input or after the image. Is this possible?
>
>
> $(function(){
> $("#theForm").formwizard({
> //form wizard settings
> historyEnabled : true,
> formPluginEnabled: true,
> validationEnabled : true},
> {
> //validation settings
> },
> {
> // form plugin settings
> }
> );
> });
>
>
--
View this message in context:
http://old.nabble.com/jQuery%3A-form-wizard-plug-in---plug-in%3A-Validation-tp26747479s27240p26927150.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.