Thanks for the help. I don't understand how to...
1. Remove the DrawBotBoot() function since it's in charge of displaying the question asked to the user
2. How to have jQuery validate the form, including the anti-SPAM question.
Does someone know of a simple anti-SPAM solution provided by jQuery that I could easily add to its form validator?
Sorry for 1/- I have nor seen the script in HTML !
3/- jQuery is not my cup of tea ! The second example of this jQuery page should solve the question
Adds a validation method that checks if a given value equals the addition of the two parameters.
Code:
jQuery.validator.addMethod("math", function(value, element, params) {
return this.optional(element) || value == params[0] + params[1];
}, jQuery.format("Please enter the correct value for {0} + {1}"));
Bookmarks