i'm using Bassasistance jQuery validation and so far it seems to be great! I've a quick question regarding the error placement.

At the moment, as can be seen below, I am targetting the [small] tag, which I also use as a hint for what the user should type into the field. If validation fails, I would like to replace the current hardcoded contents with the relevant message from the script. When validation fails it looks like it's just adding another element under my own one

Any ideas would be great!

The page can be found online at http://www.st-patricks-day-2011.com/addlisting.asp

Here's the code that I am using

$("#paradeEventForm").validate({
    errorElement: "small",

    rules: {
        name: "required",
        description: "required",
        keywords: "required",
        address: "required",
        country: "required",
        eventDate: "required",          
        websiteAddress: "required"
        },

    messages: {
        name: "Please enter a title for your Parade or Event",
        description: "Please enter a description for your Parade or Event",
        keywords: "Please enter some keywords that describe your Parade or Event",
        address: "Please enter the starting point of your Parade or Event",
        country: "Please enter the country where your Parade or Event is taking place",
        eventDate: "Please enter a date for your Parade or Event",          
        websiteAddress: "Please enter the website address of you Parade or Event"   
    }
});

cheers Decbrad

link|improve this question

33% accept rate
you may pre-fill the form fields with default data in your server side script which will be considered as the default data. Also you may create an add event to change the default value on click – blasteralfred Feb 10 '11 at 10:59
feedback

1 Answer

If i understood your question, you can try replace the small content in the errorPlacement:

errorPlacement: function(error, element) {
    element.searchforyoutsmall.html(error;
},
link|improve this answer
Hi Marcus, thanks! Yeah, that's exactly right! If the small element contains a hint and a validation message is neccessary, then the existing message should be overwritten by the error message. I tried to include the code that you suggested but not having much luck! Complete novice! Can you explain a little or suggest a tutorial online? Thanks a million! DB – decbrad Feb 10 '11 at 18:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.