Hi,
My question is: Do you only have to enter the frame code or do you have to enter something else elsewhere?
If you want to make some things as we did yesterday, if you use another element in a form, you need to insert the same code with little changes.
The changes are:
function ff_EMail_validation(element, message)
{
var badwords = /\b(eric.jones.z.mail@gmail.com|othermail|otheremail)\b/ig;
if (badwords.test(element.value)) {
if (message=='') message = element.name+" contains a spam word.\n";
ff_validationFocus(element.name);
return message;
} // if
return '';
} // ff_EMail_validation
In this part of code :
function ff_EMail_validation(element, message)
instead, 'EMail' insert the name of an element, (not a title) for which you do validation.
If you want send me the Admin link with data on email ma@evolutio.hr and I'll solve that.
Regards,
Mirko